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:
objectProperties for defining a
CfnExperimentTrialComponent.- Parameters:
trial_component_name (
str)display_name (
Optional[str])end_time (
Optional[str])metadata_properties (
Union[IResolvable,MetadataPropertiesProperty,Dict[str,Any],None])start_time (
Optional[str])status (
Union[IResolvable,StatusProperty,Dict[str,Any],None])tags (
Optional[Sequence[Union[TagsItemsProperty,Dict[str,Any]]]])
- 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 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
-
- Type:
see
- end_time
-
- Type:
see
- metadata_properties
-
- Type:
see
- start_time
-
- Type:
see
- status
-
- Type:
see
- tags
-
- Type:
see