Interface CfnProject.CfnStackParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProject.CfnStackParameterProperty.Jsii$Proxy
- Enclosing class:
CfnProject
@Stability(Stable)
public static interface CfnProject.CfnStackParameterProperty
extends software.amazon.jsii.JsiiSerializable
A key-value pair representing a parameter used in the CloudFormation stack.
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.sagemaker.*;
CfnStackParameterProperty cfnStackParameterProperty = CfnStackParameterProperty.builder()
.key("key")
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProject.CfnStackParameterPropertystatic final classAn implementation forCfnProject.CfnStackParameterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The name of the CloudFormation parameter.- See Also:
-
getValue
The value of the CloudFormation parameter.- See Also:
-
builder
-