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

AuthenticationResultType

import type { AuthenticationResultType } from "https://aws-api.deno.dev/v0.4/services/cognitoidentityserviceprovider.ts?docs=full";

The authentication result.

interface AuthenticationResultType {
AccessToken?: string | null;
ExpiresIn?: number | null;
IdToken?: string | null;
NewDeviceMetadata?: NewDeviceMetadataType | null;
RefreshToken?: string | null;
TokenType?: string | null;
}

§Properties

§
AccessToken?: string | null
[src]

A valid access token that Amazon Cognito issued to the user who you want to authenticate.

§
ExpiresIn?: number | null
[src]

The expiration period of the authentication result in seconds.

§
IdToken?: string | null
[src]

The ID token.

§
NewDeviceMetadata?: NewDeviceMetadataType | null
[src]

The new device metadata from an authentication result.

§
RefreshToken?: string | null
[src]

The refresh token.

§
TokenType?: string | null
[src]

The token type.