Class: Aws::KinesisAnalyticsV2::Types::CodeContentDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::CodeContentDescription
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Describes details about the code of a Managed Service for Apache Flink application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_md5 ⇒ String
The checksum that can be used to validate zip-format code.
-
#code_size ⇒ Integer
The size in bytes of the application code.
-
#s3_application_code_location_description ⇒ Types::S3ApplicationCodeLocationDescription
The S3 bucket Amazon Resource Name (ARN), file key, and object version of the application code stored in Amazon S3.
-
#text_content ⇒ String
The text-format code.
Instance Attribute Details
#code_md5 ⇒ String
The checksum that can be used to validate zip-format code.
1455 1456 1457 1458 1459 1460 1461 1462 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1455 class CodeContentDescription < Struct.new( :text_content, :code_md5, :code_size, :s3_application_code_location_description) SENSITIVE = [] include Aws::Structure end |
#code_size ⇒ Integer
The size in bytes of the application code. Can be used to validate zip-format code.
1455 1456 1457 1458 1459 1460 1461 1462 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1455 class CodeContentDescription < Struct.new( :text_content, :code_md5, :code_size, :s3_application_code_location_description) SENSITIVE = [] include Aws::Structure end |
#s3_application_code_location_description ⇒ Types::S3ApplicationCodeLocationDescription
The S3 bucket Amazon Resource Name (ARN), file key, and object version of the application code stored in Amazon S3.
1455 1456 1457 1458 1459 1460 1461 1462 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1455 class CodeContentDescription < Struct.new( :text_content, :code_md5, :code_size, :s3_application_code_location_description) SENSITIVE = [] include Aws::Structure end |
#text_content ⇒ String
The text-format code
1455 1456 1457 1458 1459 1460 1461 1462 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1455 class CodeContentDescription < Struct.new( :text_content, :code_md5, :code_size, :s3_application_code_location_description) SENSITIVE = [] include Aws::Structure end |