Interface CfnExperimentTrialComponentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExperimentTrialComponentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:11.316Z")
@Stability(Stable)
public interface CfnExperimentTrialComponentProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnExperimentTrialComponent.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
CfnExperimentTrialComponentProps cfnExperimentTrialComponentProps = CfnExperimentTrialComponentProps.builder()
.trialComponentName("trialComponentName")
// the properties below are optional
.displayName("displayName")
.endTime("endTime")
.metadataProperties(MetadataPropertiesProperty.builder()
.commitId("commitId")
.generatedBy("generatedBy")
.projectId("projectId")
.repository("repository")
.build())
.startTime("startTime")
.status(StatusProperty.builder()
.message("message")
.primaryStatus("primaryStatus")
.build())
.tags(List.of(TagsItemsProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExperimentTrialComponentPropsstatic final classAn implementation forCfnExperimentTrialComponentProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the component as displayed.default StringWhen the component ended.default ObjectMetadata properties of the tracking entity, trial, or trial component.default StringWhen the component started.default ObjectThe status of the trial component.getTags()A list of tags to associate with the component.The name of the trial component.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTrialComponentName
The name of the trial component.The name must be unique in your AWS account and is not case-sensitive.
- See Also:
-
getDisplayName
The name of the component as displayed.The name doesn't need to be unique. If DisplayName isn't specified, TrialComponentName is displayed.
- See Also:
-
getEndTime
When the component ended.- See Also:
-
getMetadataProperties
Metadata properties of the tracking entity, trial, or trial component.Returns union: either
IResolvableorCfnExperimentTrialComponent.MetadataPropertiesProperty- See Also:
-
getStartTime
When the component started.- See Also:
-
getStatus
The status of the trial component.Returns union: either
IResolvableorCfnExperimentTrialComponent.StatusProperty- See Also:
-
getTags
A list of tags to associate with the component.- See Also:
-
builder
-