CfnExperimentTrialComponentMixinProps
- class aws_cdk.cfn_property_mixins.aws_sagemaker.CfnExperimentTrialComponentMixinProps(*, display_name=None, end_time=None, metadata_properties=None, start_time=None, status=None, tags=None, trial_component_name=None)
Bases:
objectProperties for CfnExperimentTrialComponentPropsMixin.
- Parameters:
display_name (
Optional[str]) – The name of the component as displayed. The name doesn’t need to be unique. If DisplayName isn’t specified, TrialComponentName is displayed.end_time (
Optional[str]) – When the component ended.metadata_properties (
Union[IResolvable,MetadataPropertiesProperty,Dict[str,Any],None]) – Metadata properties of the tracking entity, trial, or trial component.start_time (
Optional[str]) – When the component started.status (
Union[IResolvable,StatusProperty,Dict[str,Any],None]) – The status of the trial component.tags (
Optional[Sequence[Union[TagsItemsProperty,Dict[str,Any]]]]) – A list of tags to associate with the component.trial_component_name (
Optional[str]) – The name of the trial component. The name must be unique in your AWS account and is not case-sensitive.
- See:
- 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_trial_component_mixin_props = sagemaker.CfnExperimentTrialComponentMixinProps( display_name="displayName", end_time="endTime", metadata_properties=sagemaker.CfnExperimentTrialComponentPropsMixin.MetadataPropertiesProperty( commit_id="commitId", generated_by="generatedBy", project_id="projectId", repository="repository" ), start_time="startTime", status=sagemaker.CfnExperimentTrialComponentPropsMixin.StatusProperty( message="message", primary_status="primaryStatus" ), tags=[sagemaker.CfnExperimentTrialComponentPropsMixin.TagsItemsProperty( key="key", value="value" )], trial_component_name="trialComponentName" )
Attributes
- display_name
The name of the component as displayed.
The name doesn’t need to be unique. If DisplayName isn’t specified, TrialComponentName is displayed.
- end_time
When the component ended.
- metadata_properties
Metadata properties of the tracking entity, trial, or trial component.
- start_time
When the component started.
- status
The status of the trial component.
- tags
A list of tags to associate with the component.
- trial_component_name
The name of the trial component.
The name must be unique in your AWS account and is not case-sensitive.