Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

S3ReferenceDataSource

import type { S3ReferenceDataSource } from "https://aws-api.deno.dev/v0.4/services/kinesisanalytics.ts?docs=full";

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.

interface S3ReferenceDataSource {
BucketARN: string;
FileKey: string;
ReferenceRoleARN: string;
}

§Properties

§
BucketARN: string
[src]

Amazon Resource Name (ARN) of the S3 bucket.

§
FileKey: string
[src]

Object key name containing reference data.

§
ReferenceRoleARN: string
[src]

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.