interface CfnProjectProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnProjectProps |
Java | software.amazon.awscdk.services.sagemaker.CfnProjectProps |
Python | aws_cdk.aws_sagemaker.CfnProjectProps |
TypeScript | @aws-cdk/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 * as sagemaker from '@aws-cdk/aws-sagemaker';
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
Name | Type | Description |
---|---|---|
project | string | The name of the project. |
service | any | The product ID and provisioning artifact ID to provision a service catalog. |
project | string | The description of the project. |
service | IResolvable | Service | AWS::SageMaker::Project.ServiceCatalogProvisionedProductDetails . |
tags? | Cfn [] | 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
|
Service
(optional)
AWS::SageMaker::Project.ServiceCatalogProvisionedProductDetails
.
tags?
Type:
Cfn
[]
(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 .