interface BatchJobStateChangeItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Batch.Events.BatchJobStateChange.BatchJobStateChangeItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbatch/events#BatchJobStateChange_BatchJobStateChangeItem |
Java | software.amazon.awscdk.mixins.preview.services.batch.events.BatchJobStateChange.BatchJobStateChangeItem |
Python | aws_cdk.mixins_preview.aws_batch.events.BatchJobStateChange.BatchJobStateChangeItem |
TypeScript | @aws-cdk/mixins-preview ยป aws_batch ยป events ยป BatchJobStateChange ยป BatchJobStateChangeItem |
Type definition for BatchJobStateChangeItem.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as batch_events } from '@aws-cdk/mixins-preview/aws-batch';
declare const networkInterfaces: any;
const batchJobStateChangeItem: batch_events.BatchJobStateChange.BatchJobStateChangeItem = {
container: {
containerInstanceArn: ['containerInstanceArn'],
exitCode: ['exitCode'],
logStreamName: ['logStreamName'],
networkInterfaces: [networkInterfaces],
taskArn: ['taskArn'],
},
startedAt: ['startedAt'],
statusReason: ['statusReason'],
stoppedAt: ['stoppedAt'],
};
Properties
| Name | Type | Description |
|---|---|---|
| container? | Container1 | container property. |
| started | string[] | startedAt property. |
| status | string[] | statusReason property. |
| stopped | string[] | stoppedAt property. |
container?
Type:
Container1
(optional, default: Do not filter on this field)
container property.
Specify an array of string values to match this event if the actual value of container is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startedAt?
Type:
string[]
(optional, default: Do not filter on this field)
startedAt property.
Specify an array of string values to match this event if the actual value of startedAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
statusReason?
Type:
string[]
(optional, default: Do not filter on this field)
statusReason property.
Specify an array of string values to match this event if the actual value of statusReason is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stoppedAt?
Type:
string[]
(optional, default: Do not filter on this field)
stoppedAt property.
Specify an array of string values to match this event if the actual value of stoppedAt 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