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

Credentials

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

Amazon Web Services credentials for API authentication.

interface Credentials {
AccessKeyId: string;
Expiration: Date | number;
SecretAccessKey: string;
SessionToken: string;
}

§Properties

§
AccessKeyId: string
[src]

The access key ID that identifies the temporary security credentials.

§
Expiration: Date | number
[src]

The date on which the current credentials expire.

§
SecretAccessKey: string
[src]

The secret access key that can be used to sign requests.

§
SessionToken: string
[src]

The token that users must pass to the service API to use the temporary credentials.