CfnProjectProps
- class aws_cdk.aws_sagemaker.CfnProjectProps(*, project_name, service_catalog_provisioning_details, project_description=None, service_catalog_provisioned_product_details=None, tags=None)
Bases:
objectProperties for defining a
CfnProject.- Parameters:
project_name (
str) – The name of the project.service_catalog_provisioning_details (
Any) – The product ID and provisioning artifact ID to provision a service catalog. For information, see What is AWS Service Catalog .project_description (
Optional[str]) – The description of the project.service_catalog_provisioned_product_details (
Union[IResolvable,ServiceCatalogProvisionedProductDetailsProperty,Dict[str,Any],None]) –AWS::SageMaker::Project.ServiceCatalogProvisionedProductDetails.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – 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 .
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_sagemaker as sagemaker # service_catalog_provisioning_details: Any cfn_project_props = sagemaker.CfnProjectProps( project_name="projectName", service_catalog_provisioning_details=service_catalog_provisioning_details, # the properties below are optional project_description="projectDescription", service_catalog_provisioned_product_details=sagemaker.CfnProject.ServiceCatalogProvisionedProductDetailsProperty( provisioned_product_id="provisionedProductId", provisioned_product_status_message="provisionedProductStatusMessage" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- project_description
The description of the project.
- project_name
The name of the project.
- service_catalog_provisioned_product_details
AWS::SageMaker::Project.ServiceCatalogProvisionedProductDetails.
- service_catalog_provisioning_details
The product ID and provisioning artifact ID to provision a service catalog.
For information, see What is AWS Service Catalog .
- tags
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 .