Class: Aws::KinesisAnalyticsV2::Types::MappingParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::MappingParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
When you configure a SQL-based Kinesis Data Analytics application’s input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#csv_mapping_parameters ⇒ Types::CSVMappingParameters
Provides additional mapping information when the record format uses delimiters (for example, CSV).
-
#json_mapping_parameters ⇒ Types::JSONMappingParameters
Provides additional mapping information when JSON is the record format on the streaming source.
Instance Attribute Details
#csv_mapping_parameters ⇒ Types::CSVMappingParameters
Provides additional mapping information when the record format uses delimiters (for example, CSV).
3595 3596 3597 3598 3599 3600 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3595 class MappingParameters < Struct.new( :json_mapping_parameters, :csv_mapping_parameters) SENSITIVE = [] include Aws::Structure end |
#json_mapping_parameters ⇒ Types::JSONMappingParameters
Provides additional mapping information when JSON is the record format on the streaming source.
3595 3596 3597 3598 3599 3600 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3595 class MappingParameters < Struct.new( :json_mapping_parameters, :csv_mapping_parameters) SENSITIVE = [] include Aws::Structure end |