Class: Aws::KinesisAnalyticsV2::Types::S3ReferenceDataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::S3ReferenceDataSource
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
For a SQL-based Kinesis Data Analytics application, identifies the Amazon S3 bucket and object that contains the reference data.
A SQL-based Kinesis Data Analytics application loads reference data only once. If the data changes, you call the UpdateApplication operation to trigger reloading of data into your application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_arn ⇒ String
The Amazon Resource Name (ARN) of the S3 bucket.
-
#file_key ⇒ String
The object key name containing the reference data.
Instance Attribute Details
#bucket_arn ⇒ String
The Amazon Resource Name (ARN) of the S3 bucket.
4552 4553 4554 4555 4556 4557 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4552 class S3ReferenceDataSource < Struct.new( :bucket_arn, :file_key) SENSITIVE = [] include Aws::Structure end |
#file_key ⇒ String
The object key name containing the reference data.
4552 4553 4554 4555 4556 4557 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4552 class S3ReferenceDataSource < Struct.new( :bucket_arn, :file_key) SENSITIVE = [] include Aws::Structure end |