interface ParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation.CfnStackSetPropsMixin.ParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudformation#CfnStackSetPropsMixin_ParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudformation.CfnStackSetPropsMixin.ParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudformation.CfnStackSetPropsMixin.ParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudformation » CfnStackSetPropsMixin » ParameterProperty |
The Parameter data type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as cloudformation } from '@aws-cdk/cfn-property-mixins';
const parameterProperty: cloudformation.CfnStackSetPropsMixin.ParameterProperty = {
parameterKey: 'parameterKey',
parameterValue: 'parameterValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | string | The key associated with the parameter. |
| parameter | string | The input value associated with the parameter. |
parameterKey?
Type:
string
(optional)
The key associated with the parameter.
If you don't specify a key and value for a particular parameter, CloudFormation uses the default value that's specified in your template.
parameterValue?
Type:
string
(optional)
The input value associated with the parameter.

.NET
Go
Java
Python
TypeScript