libZSservicesZSamazonka-kinesis-analyticsZSamazonka-kinesis-analytics
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.KinesisAnalytics.Types.LambdaOutput

Description

 
Synopsis

Documentation

data LambdaOutput Source #

When configuring application output, identifies an AWS Lambda function as the destination. You provide the function Amazon Resource Name (ARN) and also an IAM role ARN that Amazon Kinesis Analytics can use to write to the function on your behalf.

See: newLambdaOutput smart constructor.

Constructors

LambdaOutput' 

Fields

  • resourceARN :: Text

    Amazon Resource Name (ARN) of the destination Lambda function to write to.

    To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: AWS Lambda

  • roleARN :: Text

    ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination function on your behalf. You need to grant the necessary permissions to this role.

Instances

Instances details
Eq LambdaOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.LambdaOutput

Read LambdaOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.LambdaOutput

Show LambdaOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.LambdaOutput

Generic LambdaOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.LambdaOutput

Associated Types

type Rep LambdaOutput :: Type -> Type #

NFData LambdaOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.LambdaOutput

Methods

rnf :: LambdaOutput -> () #

Hashable LambdaOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.LambdaOutput

ToJSON LambdaOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.LambdaOutput

type Rep LambdaOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.LambdaOutput

type Rep LambdaOutput = D1 ('MetaData "LambdaOutput" "Amazonka.KinesisAnalytics.Types.LambdaOutput" "libZSservicesZSamazonka-kinesis-analyticsZSamazonka-kinesis-analytics" 'False) (C1 ('MetaCons "LambdaOutput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceARN") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "roleARN") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newLambdaOutput Source #

Create a value of LambdaOutput with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:resourceARN:LambdaOutput', lambdaOutput_resourceARN - Amazon Resource Name (ARN) of the destination Lambda function to write to.

To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: AWS Lambda

$sel:roleARN:LambdaOutput', lambdaOutput_roleARN - ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination function on your behalf. You need to grant the necessary permissions to this role.

lambdaOutput_resourceARN :: Lens' LambdaOutput Text Source #

Amazon Resource Name (ARN) of the destination Lambda function to write to.

To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: AWS Lambda

lambdaOutput_roleARN :: Lens' LambdaOutput Text Source #

ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination function on your behalf. You need to grant the necessary permissions to this role.