CfnExperimentMixinProps
- class aws_cdk.cfn_property_mixins.aws_sagemaker.CfnExperimentMixinProps(*, description=None, display_name=None, experiment_name=None, tags=None)
Bases:
objectProperties for CfnExperimentPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the experiment.display_name (
Optional[str]) – The name of the experiment as displayed. The name does not need to be unique.experiment_name (
Optional[str]) – The name of the experiment. Must be unique in your AWS account and is not case-sensitive.tags (
Optional[Sequence[Union[TagsItemsProperty,Dict[str,Any]]]]) – A list of tags to associate with the experiment.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-experiment.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.cfn_property_mixins import aws_sagemaker as sagemaker cfn_experiment_mixin_props = sagemaker.CfnExperimentMixinProps( description="description", display_name="displayName", experiment_name="experimentName", tags=[sagemaker.CfnExperimentPropsMixin.TagsItemsProperty( key="key", value="value" )] )
Attributes
- description
The description of the experiment.
- display_name
The name of the experiment as displayed.
The name does not need to be unique.
- experiment_name
The name of the experiment.
Must be unique in your AWS account and is not case-sensitive.
- tags
A list of tags to associate with the experiment.