Interface SsoCacheEntry

Contents of a single SSO cache file.

interface SsoCacheEntry {
    accessToken: string;
    clientId: string;
    cognitoDomain: string;
    expiresAt: string;
    idToken?: string;
    refreshToken?: string;
    region: string;
}

Properties

accessToken: string
clientId: string
cognitoDomain: string
expiresAt: string
idToken?: string
refreshToken?: string
region: string