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

RoleCredentials

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

Provides information about the role credentials that are assigned to the user.

interface RoleCredentials {
accessKeyId?: string | null;
expiration?: number | null;
secretAccessKey?: string | null;
sessionToken?: string | null;
}

§Properties

§
accessKeyId?: string | null
[src]

The identifier used for the temporary security credentials. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.

§
expiration?: number | null
[src]

The date on which temporary security credentials expire.

§
secretAccessKey?: string | null
[src]

The key that is used to sign the request. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.

§
sessionToken?: string | null
[src]

The token used for temporary credentials. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.