Request body for creating a Cognito client.

interface PostCognitoClientBody {
    allowedLogoutUrls?: string[];
    auth0Id?: string;
    callbacks: string[];
    clientMetadata?: Record<string, any>;
    description?: string;
    grantTypes: string[];
    jwtConfiguration?: CognitoJwtConfiguration;
    name: string;
    supportedIdp?: string[];
}

Hierarchy (View Summary)

Properties

allowedLogoutUrls?: string[]
auth0Id?: string
callbacks: string[]
clientMetadata?: Record<string, any>
description?: string
grantTypes: string[]
jwtConfiguration?: CognitoJwtConfiguration
name: string
supportedIdp?: string[]