interface ParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnStackSetPropsMixin.ParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnStackSetPropsMixin_ParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnStackSetPropsMixin.ParameterProperty |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnStackSetPropsMixin.ParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » 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 { mixins as cloudformation_mixins } from '@aws-cdk/mixins-preview/aws-cloudformation';
const parameterProperty: cloudformation_mixins.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