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();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProject.ProvisioningParameterPropertystatic final classAn implementation forCfnProject.ProvisioningParameterProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getKey
The key that identifies a provisioning parameter. - 
getValue
The value of the provisioning parameter. - 
builder
 
 -