CfnProjectMixinProps
- class aws_cdk.mixins_preview.aws_sagemaker.mixins.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:
objectProperties for CfnProjectPropsMixin.
- Parameters:
project_description (
Optional[str]) – The description of the project.project_name (
Optional[str]) – The name of the project.service_catalog_provisioned_product_details (
Union[IResolvable,ServiceCatalogProvisionedProductDetailsProperty,Dict[str,Any],None]) – Details of a provisioned service catalog product. For information about service catalog, see What is AWS Service Catalog .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 .
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 .template_provider_details (
Union[IResolvable,Sequence[Union[IResolvable,TemplateProviderDetailProperty,Dict[str,Any]]],None]) – An array of template providers associated with the project.
- 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.mixins_preview.aws_sagemaker import mixins as sagemaker_mixins # service_catalog_provisioning_details: Any cfn_project_mixin_props = sagemaker_mixins.CfnProjectMixinProps( project_description="projectDescription", project_name="projectName", service_catalog_provisioned_product_details=sagemaker_mixins.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_mixins.CfnProjectPropsMixin.TemplateProviderDetailProperty( cfn_template_provider_detail=sagemaker_mixins.CfnProjectPropsMixin.CfnTemplateProviderDetailProperty( parameters=[sagemaker_mixins.CfnProjectPropsMixin.CfnStackParameterProperty( key="key", value="value" )], role_arn="roleArn", template_name="templateName", template_url="templateUrl" ) )] )
Attributes
- project_description
The description of the project.
- project_name
The name of the project.
- service_catalog_provisioned_product_details
Details of a provisioned service catalog product.
For information about service catalog, see What is AWS Service Catalog .
- 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 .
- template_provider_details
An array of template providers associated with the project.