You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing S3ReferenceDataSource as input to an Aws::Client method, you can use a vanilla Hash:

{
  bucket_arn: "BucketARN", # required
  file_key: "FileKey", # required
  reference_role_arn: "RoleARN", # required
}

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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_arnString

Amazon Resource Name (ARN) of the S3 bucket.

Returns:

  • (String)

    Amazon Resource Name (ARN) of the S3 bucket.

#file_keyString

Object key name containing reference data.

Returns:

  • (String)

    Object key name containing reference data.

#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)

    ARN of the IAM role that the service can assume to read data on your behalf.