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

TokenData

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

Describes a token.

interface TokenData {
ExpirationTime?: string | null;
LicenseArn?: string | null;
RoleArns?: string[] | null;
Status?: string | null;
TokenId?: string | null;
TokenProperties?: string[] | null;
TokenType?: string | null;
}

§Properties

§
ExpirationTime?: string | null
[src]

Token expiration time, in ISO8601-UTC format.

§
LicenseArn?: string | null
[src]

Amazon Resource Name (ARN) of the license.

§
RoleArns?: string[] | null
[src]

Amazon Resource Names (ARN) of the roles included in the token.

§
Status?: string | null
[src]

Token status. The possible values are AVAILABLE and DELETED.

§
TokenId?: string | null
[src]

Token ID.

§
TokenProperties?: string[] | null
[src]

Data specified by the caller.

§
TokenType?: string | null
[src]

Type of token generated. The supported value is REFRESH_TOKEN.