Interface CfnStackSet.IParameterProperty
The Parameter data type.
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IParameterProperty
Syntax (vb)
Public Interface IParameterProperty
Remarks
ExampleMetadata: fixture=_generated
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"
};
Synopsis
Properties
ParameterKey | The key associated with the parameter. |
ParameterValue | The input value associated with the parameter. |
Properties
ParameterKey
The key associated with the parameter.
string ParameterKey { get; }
Property Value
System.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.
ParameterValue
The input value associated with the parameter.
string ParameterValue { get; }
Property Value
System.String