CfnExperimentTrialComponentProps

class aws_cdk.aws_sagemaker.CfnExperimentTrialComponentProps(*, trial_component_name, display_name=None, end_time=None, metadata_properties=None, start_time=None, status=None, tags=None)

Bases: object

Properties for defining a CfnExperimentTrialComponent.

Parameters:
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 import aws_sagemaker as sagemaker

cfn_experiment_trial_component_props = sagemaker.CfnExperimentTrialComponentProps(
    trial_component_name="trialComponentName",

    # the properties below are optional
    display_name="displayName",
    end_time="endTime",
    metadata_properties=sagemaker.CfnExperimentTrialComponent.MetadataPropertiesProperty(
        commit_id="commitId",
        generated_by="generatedBy",
        project_id="projectId",
        repository="repository"
    ),
    start_time="startTime",
    status=sagemaker.CfnExperimentTrialComponent.StatusProperty(
        message="message",
        primary_status="primaryStatus"
    ),
    tags=[sagemaker.CfnExperimentTrialComponent.TagsItemsProperty(
        key="key",
        value="value"
    )]
)

Attributes

display_name

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

Type:

see

end_time

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

Type:

see

metadata_properties

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

Type:

see

start_time

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

Type:

see

status

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

Type:

see

tags

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

Type:

see

trial_component_name

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

Type:

see