You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::KinesisAnalyticsV2::Types::InputSchemaUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::InputSchemaUpdate
- Defined in:
- (unknown)
Overview
When passing InputSchemaUpdate as input to an Aws::Client method, you can use a vanilla Hash:
{
record_format_update: {
record_format_type: "JSON", # required, accepts JSON, CSV
mapping_parameters: {
json_mapping_parameters: {
record_row_path: "RecordRowPath", # required
},
csv_mapping_parameters: {
record_row_delimiter: "RecordRowDelimiter", # required
record_column_delimiter: "RecordColumnDelimiter", # required
},
},
},
record_encoding_update: "RecordEncoding",
record_column_updates: [
{
name: "RecordColumnName", # required
mapping: "RecordColumnMapping",
sql_type: "RecordColumnSqlType", # required
},
],
}
Describes updates for an SQL-based Kinesis Data Analytics application's input schema.
Returned by:
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; for example, UTF-8.
-
#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.
#record_encoding_update ⇒ String
Specifies the encoding of the records in the streaming source; for example, UTF-8.
#record_format_update ⇒ Types::RecordFormat
Specifies the format of the records on the streaming source.