Class: Aws::KinesisAnalytics::Types::InputSchemaUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::InputSchemaUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalytics/types.rb
Overview
Describes updates for the application’s input schema.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#record_column_updates ⇒ Array<Types::RecordColumn>
A list of ‘RecordColumn` objects.
-
#record_encoding_update ⇒ String
Specifies the encoding of the records in the streaming source.
-
#record_format_update ⇒ Types::RecordFormat
Specifies the format of the records on the streaming source.
Instance Attribute Details
#record_column_updates ⇒ Array<Types::RecordColumn>
A list of ‘RecordColumn` objects. Each object describes the mapping of the streaming source element to the corresponding column in the in-application stream.
1349 1350 1351 1352 1353 1354 1355 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1349 class InputSchemaUpdate < Struct.new( :record_format_update, :record_encoding_update, :record_column_updates) SENSITIVE = [] include Aws::Structure end |
#record_encoding_update ⇒ String
Specifies the encoding of the records in the streaming source. For example, UTF-8.
1349 1350 1351 1352 1353 1354 1355 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1349 class InputSchemaUpdate < Struct.new( :record_format_update, :record_encoding_update, :record_column_updates) SENSITIVE = [] include Aws::Structure end |
#record_format_update ⇒ Types::RecordFormat
Specifies the format of the records on the streaming source.
1349 1350 1351 1352 1353 1354 1355 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1349 class InputSchemaUpdate < Struct.new( :record_format_update, :record_encoding_update, :record_column_updates) SENSITIVE = [] include Aws::Structure end |