Class: Aws::KinesisAnalytics::Types::ReferenceDataSourceUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::ReferenceDataSourceUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalytics/types.rb
Overview
When you update a reference data source configuration for an application, this object provides all the updated values (such as the source bucket name and object key name), the in-application table name that is created, and updated mapping information that maps the data in the Amazon S3 object to the in-application reference table that is created.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reference_id ⇒ String
ID of the reference data source being updated.
-
#reference_schema_update ⇒ Types::SourceSchema
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.
-
#s3_reference_data_source_update ⇒ Types::S3ReferenceDataSourceUpdate
Describes the S3 bucket name, object key name, and IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object on your behalf and populate the in-application reference table.
-
#table_name_update ⇒ String
In-application table name that is created by this update.
Instance Attribute Details
#reference_id ⇒ String
ID of the reference data source being updated. You can use the
- DescribeApplication][1
-
operation to get this value.
[1]: docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
2269 2270 2271 2272 2273 2274 2275 2276 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 2269 class ReferenceDataSourceUpdate < Struct.new( :reference_id, :table_name_update, :s3_reference_data_source_update, :reference_schema_update) SENSITIVE = [] include Aws::Structure end |
#reference_schema_update ⇒ Types::SourceSchema
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.
2269 2270 2271 2272 2273 2274 2275 2276 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 2269 class ReferenceDataSourceUpdate < Struct.new( :reference_id, :table_name_update, :s3_reference_data_source_update, :reference_schema_update) SENSITIVE = [] include Aws::Structure end |
#s3_reference_data_source_update ⇒ Types::S3ReferenceDataSourceUpdate
Describes the S3 bucket name, object key name, and IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object on your behalf and populate the in-application reference table.
2269 2270 2271 2272 2273 2274 2275 2276 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 2269 class ReferenceDataSourceUpdate < Struct.new( :reference_id, :table_name_update, :s3_reference_data_source_update, :reference_schema_update) SENSITIVE = [] include Aws::Structure end |
#table_name_update ⇒ String
In-application table name that is created by this update.
2269 2270 2271 2272 2273 2274 2275 2276 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 2269 class ReferenceDataSourceUpdate < Struct.new( :reference_id, :table_name_update, :s3_reference_data_source_update, :reference_schema_update) SENSITIVE = [] include Aws::Structure end |