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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProject.ServiceCatalogProvisioningDetailsPropertystatic final classAn implementation forCfnProject.ServiceCatalogProvisioningDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProductId
The ID of the product to provision. -
getPathId
The path identifier of the product.This value is optional if the product has a default path, and required if the product has more than one path.
-
getProvisioningArtifactId
The ID of the provisioning artifact. -
getProvisioningParameters
A list of key value pairs that you specify when you provision a product. -
builder
-