Interface SageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters.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.*;
TrainingJobStatusCounters trainingJobStatusCounters = TrainingJobStatusCounters.builder()
.completed(List.of("completed"))
.inProgress(List.of("inProgress"))
.nonRetryableError(List.of("nonRetryableError"))
.retryableError(List.of("retryableError"))
.stopped(List.of("stopped"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forSageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) Completed property.(experimental) InProgress property.(experimental) NonRetryableError property.(experimental) RetryableError property.(experimental) Stopped property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCompleted
(experimental) Completed property.Specify an array of string values to match this event if the actual value of Completed 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
-
getInProgress
(experimental) InProgress property.Specify an array of string values to match this event if the actual value of InProgress 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
-
getNonRetryableError
(experimental) NonRetryableError property.Specify an array of string values to match this event if the actual value of NonRetryableError 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
-
getRetryableError
(experimental) RetryableError property.Specify an array of string values to match this event if the actual value of RetryableError 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
-
getStopped
(experimental) Stopped property.Specify an array of string values to match this event if the actual value of Stopped 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.TrainingJobStatusCounters.Builder builder()
-