Class: Aws::KinesisAnalytics::Types::S3ReferenceDataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::S3ReferenceDataSource
- Defined in:
- gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb
Overview
Identifies the S3 bucket and object that contains the reference data. Also identifies the IAM role Amazon Kinesis Analytics can assume to read this object on your behalf.
An Amazon Kinesis 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
Amazon Resource Name (ARN) of the S3 bucket.
-
#file_key ⇒ String
Object key name containing reference data.
-
#reference_role_arn ⇒ String
ARN of the IAM role that the service can assume to read data on your behalf.
Instance Attribute Details
#bucket_arn ⇒ String
Amazon Resource Name (ARN) of the S3 bucket.
2380 2381 2382 2383 2384 2385 2386 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2380 class S3ReferenceDataSource < Struct.new( :bucket_arn, :file_key, :reference_role_arn) SENSITIVE = [] include Aws::Structure end |
#file_key ⇒ String
Object key name containing reference data.
2380 2381 2382 2383 2384 2385 2386 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2380 class S3ReferenceDataSource < Struct.new( :bucket_arn, :file_key, :reference_role_arn) SENSITIVE = [] include Aws::Structure end |
#reference_role_arn ⇒ String
ARN of the IAM role that the service can assume to read data on your
behalf. This role must have permission for the s3:GetObject
action
on the object and trust policy that allows Amazon Kinesis Analytics
service principal to assume this role.
2380 2381 2382 2383 2384 2385 2386 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2380 class S3ReferenceDataSource < Struct.new( :bucket_arn, :file_key, :reference_role_arn) SENSITIVE = [] include Aws::Structure end |