Amplify Toolbox
    Preparing search index...

    Type Alias SecretValueOf<K>

    SecretValueOf: keyof HostingSecretRegistry extends never
        ? string
        : K extends keyof HostingSecretRegistry ? HostingSecretRegistry[K] : string

    The resolved value type for a secret key: the schema's inferred output type when secret(key, { schema }) was declared (typegen inlines it into the registry), otherwise string. Falls back to string for an unadopted app.

    Type Parameters