Class: Aws::KinesisAnalytics::Types::SourceSchema
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::SourceSchema
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalytics/types.rb
Overview
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.
2474 2475 2476 2477 2478 2479 2480 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 2474 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.
2474 2475 2476 2477 2478 2479 2480 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 2474 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.
2474 2475 2476 2477 2478 2479 2480 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 2474 class SourceSchema < Struct.new( :record_format, :record_encoding, :record_columns) SENSITIVE = [] include Aws::Structure end |