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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProject.ServiceCatalogProvisioningDetailsProperty
static final class
An 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.- See Also:
-
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.
- See Also:
-
getProvisioningArtifactId
The ID of the provisioning artifact.- See Also:
-
getProvisioningParameters
A list of key value pairs that you specify when you provision a product.- See Also:
-
builder
-