Table of Contents

Class CfnStackSet.ParameterProperty

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

The Parameter data type.

public class CfnStackSet.ParameterProperty : CfnStackSet.IParameterProperty
Inheritance
CfnStackSet.ParameterProperty
Implements
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK;
             var parameterProperty = new ParameterProperty {
                 ParameterKey = "parameterKey",
                 ParameterValue = "parameterValue"
             };

Remarks

Constructors

ParameterProperty()

public ParameterProperty()

Properties

ParameterKey

The key associated with the parameter.

public string ParameterKey { get; set; }

Property Value

string

Remarks

If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that's specified in your template.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-parameter.html#cfn-cloudformation-stackset-parameter-parameterkey

ParameterValue

The input value associated with the parameter.

public string ParameterValue { get; set; }

Property Value

string

Remarks