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: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-experimenttrialcomponent.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_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.

See:

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

end_time

When the component ended.

See:

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

metadata_properties

Metadata properties of the tracking entity, trial, or trial component.

See:

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

start_time

When the component started.

See:

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

status

The status of the trial component.

See:

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

tags

A list of tags to associate with the component.

See:

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

trial_component_name

The name of the trial component.

The name must be unique in your AWS account and is not case-sensitive.

See:

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