Interface CfnProject.ProvisioningParameterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProject.ProvisioningParameterProperty.Jsii$Proxy
Enclosing class:
CfnProject

@Stability(Stable) public static interface CfnProject.ProvisioningParameterProperty extends software.amazon.jsii.JsiiSerializable
A key value pair used when you provision a project as a service catalog product.

For information, see What is AWS Service Catalog .

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.*;
 ProvisioningParameterProperty provisioningParameterProperty = ProvisioningParameterProperty.builder()
         .key("key")
         .value("value")
         .build();