libZSservicesZSamazonka-kinesisanalyticsv2ZSamazonka-kinesisanalyticsv2
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.KinesisAnalyticsV2.Types.CodeContent

Description

 
Synopsis

Documentation

data CodeContent Source #

Specifies either the application code, or the location of the application code, for a Flink-based Kinesis Data Analytics application.

See: newCodeContent smart constructor.

Constructors

CodeContent' 

Fields

Instances

Instances details
Eq CodeContent Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.CodeContent

Read CodeContent Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.CodeContent

Show CodeContent Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.CodeContent

Generic CodeContent Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.CodeContent

Associated Types

type Rep CodeContent :: Type -> Type #

NFData CodeContent Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.CodeContent

Methods

rnf :: CodeContent -> () #

Hashable CodeContent Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.CodeContent

ToJSON CodeContent Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.CodeContent

type Rep CodeContent Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.CodeContent

type Rep CodeContent = D1 ('MetaData "CodeContent" "Amazonka.KinesisAnalyticsV2.Types.CodeContent" "libZSservicesZSamazonka-kinesisanalyticsv2ZSamazonka-kinesisanalyticsv2" 'False) (C1 ('MetaCons "CodeContent'" 'PrefixI 'True) (S1 ('MetaSel ('Just "textContent") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "s3ContentLocation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe S3ContentLocation)) :*: S1 ('MetaSel ('Just "zipFileContent") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Base64)))))

newCodeContent :: CodeContent Source #

Create a value of CodeContent 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:textContent:CodeContent', codeContent_textContent - The text-format code for a Flink-based Kinesis Data Analytics application.

$sel:s3ContentLocation:CodeContent', codeContent_s3ContentLocation - Information about the Amazon S3 bucket that contains the application code.

$sel:zipFileContent:CodeContent', codeContent_zipFileContent - The zip-format code for a Flink-based Kinesis Data Analytics application.-- -- Note: This Lens automatically encodes and decodes Base64 data. -- The underlying isomorphism will encode to Base64 representation during -- serialisation, and decode from Base64 representation during deserialisation. -- This Lens accepts and returns only raw unencoded data.

codeContent_textContent :: Lens' CodeContent (Maybe Text) Source #

The text-format code for a Flink-based Kinesis Data Analytics application.

codeContent_s3ContentLocation :: Lens' CodeContent (Maybe S3ContentLocation) Source #

Information about the Amazon S3 bucket that contains the application code.

codeContent_zipFileContent :: Lens' CodeContent (Maybe ByteString) Source #

The zip-format code for a Flink-based Kinesis Data Analytics application.-- -- Note: This Lens automatically encodes and decodes Base64 data. -- The underlying isomorphism will encode to Base64 representation during -- serialisation, and decode from Base64 representation during deserialisation. -- This Lens accepts and returns only raw unencoded data.