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: