Class: Aws::KinesisAnalyticsV2::Types::SourceSchema
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::SourceSchema
- Defined in:
- gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
For a SQL-based Kinesis Data Analytics application, describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#record_columns ⇒ Array<Types::RecordColumn>
A list of
RecordColumn
objects. -
#record_encoding ⇒ String
Specifies the encoding of the records in the streaming source.
-
#record_format ⇒ Types::RecordFormat
Specifies the format of the records on the streaming source.
Instance Attribute Details
#record_columns ⇒ Array<Types::RecordColumn>
A list of RecordColumn
objects.
4679 4680 4681 4682 4683 4684 4685 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4679 class SourceSchema < Struct.new( :record_format, :record_encoding, :record_columns) SENSITIVE = [] include Aws::Structure end |
#record_encoding ⇒ String
Specifies the encoding of the records in the streaming source. For example, UTF-8.
4679 4680 4681 4682 4683 4684 4685 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4679 class SourceSchema < Struct.new( :record_format, :record_encoding, :record_columns) SENSITIVE = [] include Aws::Structure end |
#record_format ⇒ Types::RecordFormat
Specifies the format of the records on the streaming source.
4679 4680 4681 4682 4683 4684 4685 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4679 class SourceSchema < Struct.new( :record_format, :record_encoding, :record_columns) SENSITIVE = [] include Aws::Structure end |