interface TrainingJobStatusCounters
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.SageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#SageMakerHyperParameterTuningJobStateChange_TrainingJobStatusCounters |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.SageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป SageMakerHyperParameterTuningJobStateChange ยป TrainingJobStatusCounters |
Type definition for TrainingJobStatusCounters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as sagemaker_events } from '@aws-cdk/mixins-preview/aws-sagemaker';
const trainingJobStatusCounters: sagemaker_events.SageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters = {
completed: ['completed'],
inProgress: ['inProgress'],
nonRetryableError: ['nonRetryableError'],
retryableError: ['retryableError'],
stopped: ['stopped'],
};
Properties
| Name | Type | Description |
|---|---|---|
| completed? | string[] | Completed property. |
| in | string[] | InProgress property. |
| non | string[] | NonRetryableError property. |
| retryable | string[] | RetryableError property. |
| stopped? | string[] | Stopped property. |
completed?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
inProgress?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
nonRetryableError?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
retryableError?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
stopped?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript