CfnProjectProps¶
-
class
aws_cdk.aws_sagemaker.
CfnProjectProps
(*, project_name, service_catalog_provisioning_details, project_description=None, tags=None)¶ Bases:
object
Properties 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.tags (
Optional
[Sequence
[CfnTag
]]) – 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", tags=[CfnTag( key="key", value="value" )] )
Attributes
-
project_description
¶ The description of the project.
-
project_name
¶ The name of the project.
-
service_catalog_provisioning_details
¶ The product ID and provisioning artifact ID to provision a service catalog.
For information, see What is AWS Service Catalog .
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
- Return type
Optional
[List
[CfnTag
]]