interface ServiceCatalogProvisioningDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnProject.ServiceCatalogProvisioningDetailsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnProject.ServiceCatalogProvisioningDetailsProperty |
Python | aws_cdk.aws_sagemaker.CfnProject.ServiceCatalogProvisioningDetailsProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnProject » ServiceCatalogProvisioningDetailsProperty |
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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const serviceCatalogProvisioningDetailsProperty: sagemaker.CfnProject.ServiceCatalogProvisioningDetailsProperty = {
productId: 'productId',
// the properties below are optional
pathId: 'pathId',
provisioningArtifactId: 'provisioningArtifactId',
provisioningParameters: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| product | string | The ID of the product to provision. |
| path | string | The path identifier of the product. |
| provisioning | string | The ID of the provisioning artifact. |
| provisioning | IResolvable | IResolvable | Provisioning[] | A list of key value pairs that you specify when you provision a product. |
productId
Type:
string
The ID of the product to provision.
pathId?
Type:
string
(optional)
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.
provisioningArtifactId?
Type:
string
(optional)
The ID of the provisioning artifact.
provisioningParameters?
Type:
IResolvable | IResolvable | Provisioning[]
(optional)
A list of key value pairs that you specify when you provision a product.

.NET
Java
Python
TypeScript