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

AwsCredentials

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

Temporary access credentials used for uploading game build files to Amazon GameLift. They are valid for a limited time. If they expire before you upload your game build, get a new set by calling "RequestUploadCredentials".

interface AwsCredentials {
AccessKeyId?: string | null;
SecretAccessKey?: string | null;
SessionToken?: string | null;
}

§Properties

§
AccessKeyId?: string | null
[src]

Temporary key allowing access to the Amazon GameLift S3 account.

§
SecretAccessKey?: string | null
[src]

Temporary secret key allowing access to the Amazon GameLift S3 account.

§
SessionToken?: string | null
[src]

Token used to associate a specific build ID with the files uploaded using these credentials.