Interface CfnStackSet.ParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStackSet.ParameterProperty.Jsii$Proxy
- Enclosing class:
CfnStackSet
@Stability(Stable)
public static interface CfnStackSet.ParameterProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.cloudformation.*; ParameterProperty parameterProperty = ParameterProperty.builder() .parameterKey("parameterKey") .parameterValue("parameterValue") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStackSet.ParameterProperty
static final class
An implementation forCfnStackSet.ParameterProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The key associated with the parameter.The input value associated with the parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterKey
The key associated with the parameter.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.
-
getParameterValue
The input value associated with the parameter. -
builder
-