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/connect.ts?docs=full";

Contains credentials to use for federation.

interface Credentials {
AccessToken?: string | null;
AccessTokenExpiration?: Date | number | null;
RefreshToken?: string | null;
RefreshTokenExpiration?: Date | number | null;
}

§Properties

§
AccessToken?: string | null
[src]

An access token generated for a federated user to access Amazon Connect.

§
AccessTokenExpiration?: Date | number | null
[src]

A token generated with an expiration time for the session a user is logged in to Amazon Connect.

§
RefreshToken?: string | null
[src]

Renews a token generated for a user to access the Amazon Connect instance.

§
RefreshTokenExpiration?: Date | number | null
[src]

Renews the expiration timer for a generated token.