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

S3ContentLocation

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

For a Kinesis Data Analytics application provides a description of an Amazon S3 object, including the Amazon Resource Name (ARN) of the S3 bucket, the name of the Amazon S3 object that contains the data, and the version number of the Amazon S3 object that contains the data.

interface S3ContentLocation {
BucketARN: string;
FileKey: string;
ObjectVersion?: string | null;
}

§Properties

§
BucketARN: string
[src]

The Amazon Resource Name (ARN) for the S3 bucket containing the application code.

§
FileKey: string
[src]

The file key for the object containing the application code.

§
ObjectVersion?: string | null
[src]

The version of the object containing the application code.