Class: Aws::KinesisAnalyticsV2::Types::RecordColumn
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::RecordColumn
- Defined in:
- gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
For a SQL-based Kinesis Data Analytics application, describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.
Also used to describe the format of the reference data source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mapping ⇒ String
A reference to the data element in the streaming input or the reference data source.
-
#name ⇒ String
The name of the column that is created in the in-application input stream or reference table.
-
#sql_type ⇒ String
The type of column created in the in-application input stream or reference table.
Instance Attribute Details
#mapping ⇒ String
A reference to the data element in the streaming input or the reference data source.
4080 4081 4082 4083 4084 4085 4086 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4080 class RecordColumn < Struct.new( :name, :mapping, :sql_type) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the column that is created in the in-application input stream or reference table.
4080 4081 4082 4083 4084 4085 4086 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4080 class RecordColumn < Struct.new( :name, :mapping, :sql_type) SENSITIVE = [] include Aws::Structure end |
#sql_type ⇒ String
The type of column created in the in-application input stream or reference table.
4080 4081 4082 4083 4084 4085 4086 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4080 class RecordColumn < Struct.new( :name, :mapping, :sql_type) SENSITIVE = [] include Aws::Structure end |