AwsCloudformationParameterArgs
interface AwsCloudformationParameterArgs {
parameterKey: Input<string>;
parameterValue: Input<string>;
}CloudFormation parameter entry input.
Example
CODE
const parameter: AwsCloudformationParameterArgs = {
parameterKey: 'Environment',
parameterValue: 'tst',
};Properties
parameterKey: Input<string>
CloudFormation parameter key.
parameterValue: Input<string>
CloudFormation parameter value.