Class: Aws::KinesisAnalyticsV2::Types::CodeContentUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::CodeContentUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Describes an update to the code of an application. Not supported for Apache Zeppelin.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_content_location_update ⇒ Types::S3ContentLocationUpdate
Describes an update to the location of code for an application.
-
#text_content_update ⇒ String
Describes an update to the text code for an application.
-
#zip_file_content_update ⇒ String
Describes an update to the zipped code for an application.
Instance Attribute Details
#s3_content_location_update ⇒ Types::S3ContentLocationUpdate
Describes an update to the location of code for an application.
1481 1482 1483 1484 1485 1486 1487 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1481 class CodeContentUpdate < Struct.new( :text_content_update, :zip_file_content_update, :s3_content_location_update) SENSITIVE = [] include Aws::Structure end |
#text_content_update ⇒ String
Describes an update to the text code for an application.
1481 1482 1483 1484 1485 1486 1487 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1481 class CodeContentUpdate < Struct.new( :text_content_update, :zip_file_content_update, :s3_content_location_update) SENSITIVE = [] include Aws::Structure end |
#zip_file_content_update ⇒ String
Describes an update to the zipped code for an application.
1481 1482 1483 1484 1485 1486 1487 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1481 class CodeContentUpdate < Struct.new( :text_content_update, :zip_file_content_update, :s3_content_location_update) SENSITIVE = [] include Aws::Structure end |