aws-cdk-lib.aws_sagemaker.CfnProjectProps

interface CfnProjectProps

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnProjectProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProjectProps
Javasoftware.amazon.awscdk.services.sagemaker.CfnProjectProps
Pythonaws_cdk.aws_sagemaker.CfnProjectProps
TypeScript aws-cdk-lib » aws_sagemaker » CfnProjectProps

Properties for defining a CfnProject.

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';

declare const serviceCatalogProvisioningDetails: any;
const cfnProjectProps: sagemaker.CfnProjectProps = {
  projectName: 'projectName',
  serviceCatalogProvisioningDetails: serviceCatalogProvisioningDetails,

  // the properties below are optional
  projectDescription: 'projectDescription',
  serviceCatalogProvisionedProductDetails: {
    provisionedProductId: 'provisionedProductId',
    provisionedProductStatusMessage: 'provisionedProductStatusMessage',
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
projectNamestringThe name of the project.
serviceCatalogProvisioningDetailsanyThe product ID and provisioning artifact ID to provision a service catalog.
projectDescription?stringThe description of the project.
serviceCatalogProvisionedProductDetails?IResolvable | ServiceCatalogProvisionedProductDetailsPropertyAWS::SageMaker::Project.ServiceCatalogProvisionedProductDetails.
tags?CfnTag[]A list of key-value pairs to apply to this resource.

projectName

Type: string

The name of the project.


serviceCatalogProvisioningDetails

Type: any

The product ID and provisioning artifact ID to provision a service catalog.

For information, see What is AWS Service Catalog .


projectDescription?

Type: string (optional)

The description of the project.


serviceCatalogProvisionedProductDetails?

Type: IResolvable | ServiceCatalogProvisionedProductDetailsProperty (optional)

AWS::SageMaker::Project.ServiceCatalogProvisionedProductDetails.


tags?

Type: CfnTag[] (optional)

A list of key-value pairs to apply to this resource.

For more information, see Resource Tag and Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide .