Interface CfnProject.ServiceCatalogProvisioningDetailsProperty

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

@Stability(Stable) public static interface CfnProject.ServiceCatalogProvisioningDetailsProperty extends software.amazon.jsii.JsiiSerializable
Details that you specify to provision a service catalog product.

For information about service catalog, 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.*;
 ServiceCatalogProvisioningDetailsProperty serviceCatalogProvisioningDetailsProperty = ServiceCatalogProvisioningDetailsProperty.builder()
         .productId("productId")
         // the properties below are optional
         .pathId("pathId")
         .provisioningArtifactId("provisioningArtifactId")
         .provisioningParameters(List.of(ProvisioningParameterProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();