Amplify Toolbox
    Preparing search index...

    Interface ConfigValue

    Marker returned by config — a non-sensitive value in SSM Parameter Store.

    interface ConfigValue {
        "[MANAGED_BRAND]": true;
        key: string;
        kind: "config";
        schema?: StandardSchemaV1<unknown, unknown>;
    }
    Index

    Properties

    "[MANAGED_BRAND]": true
    key: string

    The logical name; the key you set with config set <key> and read with getConfig('<key>').

    kind: "config"

    Always 'config' (→ SSM Parameter Store).

    schema?: StandardSchemaV1<unknown, unknown>

    Optional value schema (Zod/Valibot/ArkType — any Standard Schema). When set, getConfig('<key>') returns the schema's output type (typegen inlines it) and the runtime JSON-parses the stored value. Carried for synth wiring (the parse flag) and typegen type inference; never serialized to the template.