Show / Hide Table of Contents

Class SageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters

(experimental) Type definition for TrainingJobStatusCounters.

Inheritance
object
SageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters
Implements
SageMakerHyperParameterTuningJobStateChange.ITrainingJobStatusCounters
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class SageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters : SageMakerHyperParameterTuningJobStateChange.ITrainingJobStatusCounters
Syntax (vb)
Public Class SageMakerHyperParameterTuningJobStateChange.TrainingJobStatusCounters Implements SageMakerHyperParameterTuningJobStateChange.ITrainingJobStatusCounters
Remarks

Stability: Experimental

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events;

             var trainingJobStatusCounters = new TrainingJobStatusCounters {
                 Completed = new [] { "completed" },
                 InProgress = new [] { "inProgress" },
                 NonRetryableError = new [] { "nonRetryableError" },
                 RetryableError = new [] { "retryableError" },
                 Stopped = new [] { "stopped" }
             };

Synopsis

Constructors

TrainingJobStatusCounters()

(experimental) Type definition for TrainingJobStatusCounters.

Properties

Completed

(experimental) Completed property.

InProgress

(experimental) InProgress property.

NonRetryableError

(experimental) NonRetryableError property.

RetryableError

(experimental) RetryableError property.

Stopped

(experimental) Stopped property.

Constructors

TrainingJobStatusCounters()

(experimental) Type definition for TrainingJobStatusCounters.

public TrainingJobStatusCounters()
Remarks

Stability: Experimental

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events;

             var trainingJobStatusCounters = new TrainingJobStatusCounters {
                 Completed = new [] { "completed" },
                 InProgress = new [] { "inProgress" },
                 NonRetryableError = new [] { "nonRetryableError" },
                 RetryableError = new [] { "retryableError" },
                 Stopped = new [] { "stopped" }
             };

Properties

Completed

(experimental) Completed property.

public string[]? Completed { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

InProgress

(experimental) InProgress property.

public string[]? InProgress { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

NonRetryableError

(experimental) NonRetryableError property.

public string[]? NonRetryableError { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

RetryableError

(experimental) RetryableError property.

public string[]? RetryableError { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

Stopped

(experimental) Stopped property.

public string[]? Stopped { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

Implements

SageMakerHyperParameterTuningJobStateChange.ITrainingJobStatusCounters
Back to top Generated by DocFX