Class: Aws::KinesisAnalyticsV2::Types::CodeContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::CodeContent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Note:
When making an API call, you may pass CodeContent data as a hash:
{
text_content: "TextContent",
zip_file_content: "data",
s3_content_location: {
bucket_arn: "BucketARN", # required
file_key: "FileKey", # required
object_version: "ObjectVersion",
},
}
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.
1883 1884 1885 1886 1887 1888 1889 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1883 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.
1883 1884 1885 1886 1887 1888 1889 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1883 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.
1883 1884 1885 1886 1887 1888 1889 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1883 class CodeContent < Struct.new( :text_content, :zip_file_content, :s3_content_location) SENSITIVE = [] include Aws::Structure end |