@Stability(value=Stable)
public static interface CfnStackSet.ParameterProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStackSet.ParameterProperty.Builder
A builder for
CfnStackSet.ParameterProperty |
static class |
CfnStackSet.ParameterProperty.Jsii$Proxy
An implementation for
CfnStackSet.ParameterProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnStackSet.ParameterProperty.Builder |
builder() |
String |
getParameterKey()
The key associated with the parameter.
|
String |
getParameterValue()
The input value associated with the parameter.
|
@Stability(value=Stable) @NotNull String getParameterKey()
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.
@Stability(value=Stable) @NotNull String getParameterValue()
@Stability(value=Stable) static CfnStackSet.ParameterProperty.Builder builder()
Copyright © 2022. All rights reserved.