CfnProjectProps

class aws_cdk.aws_sagemaker.CfnProjectProps(*, project_name, project_description=None, service_catalog_provisioned_product_details=None, service_catalog_provisioning_details=None, tags=None, template_provider_details=None)

Bases: object

Properties for defining a CfnProject.

Parameters:
See:

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.
from aws_cdk import aws_sagemaker as sagemaker

# service_catalog_provisioning_details: Any

cfn_project_props = sagemaker.CfnProjectProps(
    project_name="projectName",

    # 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"
    ),
    service_catalog_provisioning_details=service_catalog_provisioning_details,
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    template_provider_details=[sagemaker.CfnProject.TemplateProviderDetailProperty(
        cfn_template_provider_detail=sagemaker.CfnProject.CfnTemplateProviderDetailProperty(
            template_name="templateName",
            template_url="templateUrl",

            # the properties below are optional
            parameters=[sagemaker.CfnProject.CfnStackParameterProperty(
                key="key",
                value="value"
            )],
            role_arn="roleArn"
        )
    )]
)

Attributes

project_description

The description of the project.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html#cfn-sagemaker-project-projectdescription

project_name

The name of the project.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html#cfn-sagemaker-project-projectname

service_catalog_provisioned_product_details

Details of a provisioned service catalog product.

For information about service catalog, see What is AWS Service Catalog .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html#cfn-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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html#cfn-sagemaker-project-servicecatalogprovisioningdetails

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html#cfn-sagemaker-project-tags

template_provider_details

An array of template providers associated with the project.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html#cfn-sagemaker-project-templateproviderdetails