Interface SageMakerHyperParameterTuningJobStateChange.ObjectiveStatusCounters
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SageMakerHyperParameterTuningJobStateChange.ObjectiveStatusCounters.Jsii$Proxy
- Enclosing class:
SageMakerHyperParameterTuningJobStateChange
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.sagemaker.events.*;
ObjectiveStatusCounters objectiveStatusCounters = ObjectiveStatusCounters.builder()
.failed(List.of("failed"))
.pending(List.of("pending"))
.succeeded(List.of("succeeded"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forSageMakerHyperParameterTuningJobStateChange.ObjectiveStatusCounters -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) Failed property.(experimental) Pending property.(experimental) Succeeded property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFailed
(experimental) Failed property.Specify an array of string values to match this event if the actual value of Failed is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getPending
(experimental) Pending property.Specify an array of string values to match this event if the actual value of Pending is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getSucceeded
(experimental) Succeeded property.Specify an array of string values to match this event if the actual value of Succeeded is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
@Stability(Experimental) static SageMakerHyperParameterTuningJobStateChange.ObjectiveStatusCounters.Builder builder()
-