interface SageMakerTrainingJobStateChangeItem1
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.SageMakerTrainingJobStateChange.SageMakerTrainingJobStateChangeItem1 |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#SageMakerTrainingJobStateChange_SageMakerTrainingJobStateChangeItem1 |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.SageMakerTrainingJobStateChange.SageMakerTrainingJobStateChangeItem1 |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerTrainingJobStateChange.SageMakerTrainingJobStateChangeItem1 |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป SageMakerTrainingJobStateChange ยป SageMakerTrainingJobStateChangeItem1 |
Type definition for SageMakerTrainingJobStateChangeItem_1.
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 sageMakerTrainingJobStateChangeItem1: sagemaker_events.SageMakerTrainingJobStateChange.SageMakerTrainingJobStateChangeItem1 = {
startTime: ['startTime'],
status: ['status'],
statusMessage: ['statusMessage'],
};
Properties
| Name | Type | Description |
|---|---|---|
| start | string[] | StartTime property. |
| status? | string[] | Status property. |
| status | string[] | StatusMessage property. |
startTime?
Type:
string[]
(optional, default: Do not filter on this field)
StartTime property.
Specify an array of string values to match this event if the actual value of StartTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
Status property.
Specify an array of string values to match this event if the actual value of Status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
statusMessage?
Type:
string[]
(optional, default: Do not filter on this field)
StatusMessage property.
Specify an array of string values to match this event if the actual value of StatusMessage 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