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

CreateTokenRequest

import type { CreateTokenRequest } from "https://aws-api.deno.dev/v0.3/services/licensemanager.ts?docs=full";
interface CreateTokenRequest {
ClientToken: string;
ExpirationInDays?: number | null;
LicenseArn: string;
RoleArns?: string[] | null;
TokenProperties?: string[] | null;
}

§Properties

§
ClientToken: string
[src]

Idempotency token, valid for 10 minutes.

§
ExpirationInDays?: number | null
[src]

Token expiration, in days, counted from token creation. The default is 365 days.

§
LicenseArn: string
[src]

Amazon Resource Name (ARN) of the license. The ARN is mapped to the aud claim of the JWT token.

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

Amazon Resource Name (ARN) of the IAM roles to embed in the token. License Manager does not check whether the roles are in use.

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

Data specified by the caller to be included in the JWT token. The data is mapped to the amr claim of the JWT token.