Amplify Toolbox
    Preparing search index...
    type BackendMetadata = {
        apiConfiguration?: {
            additionalAuthTypes: ApiAuthType[];
            apiId: string;
            conflictResolutionMode?: ConflictResolutionMode;
            defaultAuthType: ApiAuthType;
            graphqlEndpoint: string;
            lastUpdated: Date | undefined;
            modelSchemaS3Uri: string;
            status: BackendDeploymentStatus;
        };
        authConfiguration?: {
            lastUpdated: Date
            | undefined;
            status: BackendDeploymentStatus;
            userPoolId: string;
        };
        deploymentType: DeploymentType;
        functionConfigurations?: FunctionConfiguration[];
        lastUpdated: Date
        | undefined;
        name: string;
        resources: DeployedBackendResource[];
        status: BackendDeploymentStatus;
        storageConfiguration?: {
            lastUpdated: Date | undefined;
            s3BucketName: string;
            status: BackendDeploymentStatus;
        };
    }
    Index

    Properties

    apiConfiguration?: {
        additionalAuthTypes: ApiAuthType[];
        apiId: string;
        conflictResolutionMode?: ConflictResolutionMode;
        defaultAuthType: ApiAuthType;
        graphqlEndpoint: string;
        lastUpdated: Date | undefined;
        modelSchemaS3Uri: string;
        status: BackendDeploymentStatus;
    }
    authConfiguration?: {
        lastUpdated: Date | undefined;
        status: BackendDeploymentStatus;
        userPoolId: string;
    }
    deploymentType: DeploymentType
    functionConfigurations?: FunctionConfiguration[]
    lastUpdated: Date | undefined
    name: string
    storageConfiguration?: {
        lastUpdated: Date | undefined;
        s3BucketName: string;
        status: BackendDeploymentStatus;
    }