Interface CfnExperimentTrialComponentMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExperimentTrialComponentMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:25.894Z")
@Stability(Stable)
public interface CfnExperimentTrialComponentMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnExperimentTrialComponentPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
CfnExperimentTrialComponentMixinProps cfnExperimentTrialComponentMixinProps = CfnExperimentTrialComponentMixinProps.builder()
.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()))
.trialComponentName("trialComponentName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExperimentTrialComponentMixinPropsstatic final classAn implementation forCfnExperimentTrialComponentMixinProps -
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.default StringThe name of the trial component.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
IResolvableorCfnExperimentTrialComponentPropsMixin.MetadataPropertiesProperty- See Also:
-
getStartTime
When the component started.- See Also:
-
getStatus
The status of the trial component.Returns union: either
IResolvableorCfnExperimentTrialComponentPropsMixin.StatusProperty- See Also:
-
getTags
@Stability(Stable) @Nullable default List<CfnExperimentTrialComponentPropsMixin.TagsItemsProperty> getTags()A list of tags to associate with the component.- See Also:
-
getTrialComponentName
The name of the trial component.The name must be unique in your AWS account and is not case-sensitive.
- See Also:
-
builder
-