Amplify Toolbox
    Preparing search index...

    Type Alias DeepPartialAmplifyGeneratedConfigs<T>

    DeepPartialAmplifyGeneratedConfigs: {
        [P in keyof T]?: P extends "auth"
        | "data"
        | "storage"
            ? T[P] extends object
                ? DeepPartialAmplifyGeneratedConfigs<T[P]>
                : Partial<T[P]>
            : T[P]
    }

    Makes all the properties of the entire nested object partial for Amplify generated configs instead of just the top level properties. Other properties are not changed.

    Type Parameters

    • T