Class: Aws::KinesisAnalytics::Types::S3ReferenceDataSource

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bucket_arnString

Amazon Resource Name (ARN) of the S3 bucket.

Returns:

  • (String)


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_keyString

Object key name containing reference data.

Returns:

  • (String)


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_arnString

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.

Returns:

  • (String)


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