Amplify Toolbox
    Preparing search index...

    Auth L2 and L1 resources.

    type AuthResources = {
        authenticatedUserIamRole: IRole;
        cfnResources: AuthCfnResources;
        groups: {
            [groupName: string]: { cfnUserGroup: CfnUserPoolGroup; role: IRole };
        };
        identityPoolId: string;
        unauthenticatedUserIamRole: IRole;
        userPool: IUserPool;
        userPoolClient: IUserPoolClient;
    }
    Index

    Properties

    authenticatedUserIamRole: IRole

    The generated auth role.

    cfnResources: AuthCfnResources

    L1 Cfn Resources, for when dipping down a level of abstraction is desirable.

    groups: { [groupName: string]: { cfnUserGroup: CfnUserPoolGroup; role: IRole } }

    A map of group names to the generated resources for that group.

    identityPoolId: string

    Identity pool Id

    unauthenticatedUserIamRole: IRole

    The generated unauth role.

    userPool: IUserPool

    The generated UserPool L2 Resource.

    userPoolClient: IUserPoolClient

    The generated UserPoolClient L2 Resource.