aws-cdk-lib.aws_sagemaker.CfnProject.ServiceCatalogProvisioningDetailsProperty

interface ServiceCatalogProvisioningDetailsProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnProject.ServiceCatalogProvisioningDetailsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProject_ServiceCatalogProvisioningDetailsProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnProject.ServiceCatalogProvisioningDetailsProperty
Pythonaws_cdk.aws_sagemaker.CfnProject.ServiceCatalogProvisioningDetailsProperty
TypeScript aws-cdk-lib » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const serviceCatalogProvisioningDetailsProperty: sagemaker.CfnProject.ServiceCatalogProvisioningDetailsProperty = {
  productId: 'productId',

  // the properties below are optional
  pathId: 'pathId',
  provisioningArtifactId: 'provisioningArtifactId',
  provisioningParameters: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
productIdstringThe ID of the product to provision.
pathId?stringThe path identifier of the product.
provisioningArtifactId?stringThe ID of the provisioning artifact.
provisioningParameters?IResolvable | IResolvable | ProvisioningParameterProperty[]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 | ProvisioningParameterProperty[] (optional)

A list of key value pairs that you specify when you provision a product.