A plain text application parameter that will be stored in AWS Parameter Store. Only used for non-sensitive values, typically those commited directly in the IaC code.

interface PlainTextParameter {
    key: string;
    value: string;
}

Properties

Properties

key: string
value: string