Class: Aws::KinesisAnalyticsV2::Types::CodeContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::CodeContent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Specifies either the application code, or the location of the application code, for a Flink-based Kinesis Data Analytics application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_content_location ⇒ Types::S3ContentLocation
Information about the Amazon S3 bucket that contains the application code.
-
#text_content ⇒ String
The text-format code for a Flink-based Kinesis Data Analytics application.
-
#zip_file_content ⇒ String
The zip-format code for a Flink-based Kinesis Data Analytics application.
Instance Attribute Details
#s3_content_location ⇒ Types::S3ContentLocation
Information about the Amazon S3 bucket that contains the application code.
1242 1243 1244 1245 1246 1247 1248 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1242 class CodeContent < Struct.new( :text_content, :zip_file_content, :s3_content_location) SENSITIVE = [] include Aws::Structure end |
#text_content ⇒ String
The text-format code for a Flink-based Kinesis Data Analytics application.
1242 1243 1244 1245 1246 1247 1248 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1242 class CodeContent < Struct.new( :text_content, :zip_file_content, :s3_content_location) SENSITIVE = [] include Aws::Structure end |
#zip_file_content ⇒ String
The zip-format code for a Flink-based Kinesis Data Analytics application.
1242 1243 1244 1245 1246 1247 1248 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1242 class CodeContent < Struct.new( :text_content, :zip_file_content, :s3_content_location) SENSITIVE = [] include Aws::Structure end |