interface KeyValuePair {
    name: Input<string>;
    value: Input<string>;
}

Properties

Properties

name: Input<string>

The name of the key-value pair. For environment variables, this is the name of the environment variable.

value: Input<string>

The value of the key-value pair. For environment variables, this is the value of the environment variable.

Generated using TypeDoc