amazonka-kinesis-analytics-2.0: Amazon Kinesis Analytics SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.KinesisAnalytics.Types.KinesisStreamsOutput

Description

 
Synopsis

Documentation

data KinesisStreamsOutput Source #

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

See: newKinesisStreamsOutput smart constructor.

Constructors

KinesisStreamsOutput' 

Fields

  • resourceARN :: Text

    ARN of the destination Amazon Kinesis stream to write to.

  • roleARN :: Text

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

Instances

Instances details
ToJSON KinesisStreamsOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.KinesisStreamsOutput

Generic KinesisStreamsOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.KinesisStreamsOutput

Associated Types

type Rep KinesisStreamsOutput :: Type -> Type #

Read KinesisStreamsOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.KinesisStreamsOutput

Show KinesisStreamsOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.KinesisStreamsOutput

NFData KinesisStreamsOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.KinesisStreamsOutput

Methods

rnf :: KinesisStreamsOutput -> () #

Eq KinesisStreamsOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.KinesisStreamsOutput

Hashable KinesisStreamsOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.KinesisStreamsOutput

type Rep KinesisStreamsOutput Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.KinesisStreamsOutput

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

newKinesisStreamsOutput Source #

Create a value of KinesisStreamsOutput 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:KinesisStreamsOutput', kinesisStreamsOutput_resourceARN - ARN of the destination Amazon Kinesis stream to write to.

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

kinesisStreamsOutput_resourceARN :: Lens' KinesisStreamsOutput Text Source #

ARN of the destination Amazon Kinesis stream to write to.

kinesisStreamsOutput_roleARN :: Lens' KinesisStreamsOutput Text Source #

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