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

S3Location

import type { S3Location } from "https://aws-api.deno.dev/v0.3/services/gamelift.ts?docs=full";

The location in Amazon S3 where build or script files are stored for access by Amazon GameLift. This location is specified in "CreateBuild", "CreateScript", and "UpdateScript" requests.

interface S3Location {
Bucket?: string | null;
Key?: string | null;
ObjectVersion?: string | null;
RoleArn?: string | null;
}

§Properties

§
Bucket?: string | null
[src]

An Amazon S3 bucket identifier. This is the name of the S3 bucket.

Note: GameLift currently does not support uploading from Amazon S3 buckets with names that contain a dot (.).

§
Key?: string | null
[src]

The name of the zip file that contains the build files or script files.

§
ObjectVersion?: string | null
[src]

The version of the file, if object versioning is turned on for the bucket. Amazon GameLift uses this information when retrieving files from an S3 bucket that you own. Use this parameter to specify a specific version of the file. If not set, the latest version of the file is retrieved.

§
RoleArn?: string | null
[src]

The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket.