Package version:

Type Alias ConfigurationSettingParam<T>

ConfigurationSettingParam<T>: ConfigurationSettingId & {
    contentType?: string;
    tags?: {
        [propertyName: string]: string;
    };
} & (T extends string
    ? {
        value?: string;
    }
    : {
        value: T;
    })

Necessary fields for updating or creating a new configuration setting

Type Parameters

Type declaration

  • OptionalcontentType?: string

    The content type of the setting's value

  • Optionaltags?: {
        [propertyName: string]: string;
    }

    Tags for this key

    • [propertyName: string]: string