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

S3Configuration

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

Provides a description of an Amazon S3 data source, including the Amazon Resource Name (ARN) of the S3 bucket, the ARN of the IAM role that is used to access the bucket, and the name of the Amazon S3 object that contains the data.

interface S3Configuration {
BucketARN: string;
FileKey: string;
RoleARN: string;
}

§Properties

§
BucketARN: string
[src]

ARN of the S3 bucket that contains the data.

§
FileKey: string
[src]

The name of the object that contains the data.

§
RoleARN: string
[src]

IAM ARN of the role used to access the data.