Interface CfnTrialComponentMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrialComponentMixinProps.Jsii$Proxy
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.*;
CfnTrialComponentMixinProps cfnTrialComponentMixinProps = CfnTrialComponentMixinProps.builder()
.displayName("displayName")
.inputArtifacts(Map.of(
"inputArtifactsKey", TrialComponentArtifactProperty.builder()
.mediaType("mediaType")
.value("value")
.build()))
.metadataProperties(MetadataPropertiesProperty.builder()
.commitId("commitId")
.generatedBy("generatedBy")
.projectId("projectId")
.repository("repository")
.build())
.outputArtifacts(Map.of(
"outputArtifactsKey", TrialComponentArtifactProperty.builder()
.mediaType("mediaType")
.value("value")
.build()))
.parameters(Map.of(
"parametersKey", TrialComponentParameterValueProperty.builder()
.numberValue(123)
.stringValue("stringValue")
.build()))
.status(TrialComponentStatusProperty.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 forCfnTrialComponentMixinPropsstatic final classAn implementation forCfnTrialComponentMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the component as displayed.default ObjectThe input artifacts for the component.default ObjectMetadata properties of the tracking entity, trial, or trial component.default ObjectThe output artifacts for the component.default ObjectThe hyperparameters for the component.default ObjectThe status of the trial component.getTags()A list of tags to associate with the trial 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.If DisplayName isn't specified, TrialComponentName is displayed.
- See Also:
-
getInputArtifacts
The input artifacts for the component.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnTrialComponentPropsMixin.TrialComponentArtifactProperty>- See Also:
-
getMetadataProperties
Metadata properties of the tracking entity, trial, or trial component.Returns union: either
IResolvableorCfnTrialComponentPropsMixin.MetadataPropertiesProperty- See Also:
-
getOutputArtifacts
The output artifacts for the component.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnTrialComponentPropsMixin.TrialComponentArtifactProperty>- See Also:
-
getParameters
The hyperparameters for the component.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnTrialComponentPropsMixin.TrialComponentParameterValueProperty>- See Also:
-
getStatus
The status of the trial component.Returns union: either
IResolvableorCfnTrialComponentPropsMixin.TrialComponentStatusProperty- See Also:
-
getTags
A list of tags to associate with the trial component.- See Also:
-
getTrialComponentName
The name of the trial component.Must be unique in your AWS account and is not case-sensitive.
- See Also:
-
builder
-