CfnProjectMixinProps

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

Bases: object

Properties for CfnProjectPropsMixin.

Parameters:
See:

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

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_sagemaker as sagemaker

# service_catalog_provisioning_details: Any

cfn_project_mixin_props = sagemaker.CfnProjectMixinProps(
    project_description="projectDescription",
    project_name="projectName",
    service_catalog_provisioned_product_details=sagemaker.CfnProjectPropsMixin.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.CfnProjectPropsMixin.TemplateProviderDetailProperty(
        cfn_template_provider_detail=sagemaker.CfnProjectPropsMixin.CfnTemplateProviderDetailProperty(
            parameters=[sagemaker.CfnProjectPropsMixin.CfnStackParameterProperty(
                key="key",
                value="value"
            )],
            role_arn="roleArn",
            template_name="templateName",
            template_url="templateUrl"
        )
    )]
)

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