Amplify Toolbox
    Preparing search index...

    Type Alias Backend<T>

    Backend: BackendBase & {
        [K in keyof T]: Omit<
            ReturnType<T[K]["getInstance"]>,
            keyof ResourceAccessAcceptorFactory,
        >
    }

    Use defineBackend to create an instance of this type. This object has the Amplify BackendBase methods on it for interacting with the backend. It also has dynamic properties based on the resources passed into defineBackend

    Type Parameters