interface ServiceCatalogProvisioningDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnProjectPropsMixin.ServiceCatalogProvisioningDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnProjectPropsMixin_ServiceCatalogProvisioningDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnProjectPropsMixin.ServiceCatalogProvisioningDetailsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnProjectPropsMixin.ServiceCatalogProvisioningDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnProjectPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const serviceCatalogProvisioningDetailsProperty: sagemaker_mixins.CfnProjectPropsMixin.ServiceCatalogProvisioningDetailsProperty = {
pathId: 'pathId',
productId: 'productId',
provisioningArtifactId: 'provisioningArtifactId',
provisioningParameters: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| path | string | The path identifier of the product. |
| product | string | The ID of the product to provision. |
| 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. |
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.
productId?
Type:
string
(optional)
The ID of the product to provision.
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
Go
Java
Python
TypeScript