interface Container1
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Batch.Events.BatchJobStateChange.Container1 |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbatch/events#BatchJobStateChange_Container1 |
Java | software.amazon.awscdk.mixins.preview.services.batch.events.BatchJobStateChange.Container1 |
Python | aws_cdk.mixins_preview.aws_batch.events.BatchJobStateChange.Container1 |
TypeScript | @aws-cdk/mixins-preview ยป aws_batch ยป events ยป BatchJobStateChange ยป Container1 |
Type definition for Container_1.
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 container1: batch_events.BatchJobStateChange.Container1 = {
containerInstanceArn: ['containerInstanceArn'],
exitCode: ['exitCode'],
logStreamName: ['logStreamName'],
networkInterfaces: [networkInterfaces],
taskArn: ['taskArn'],
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string[] | containerInstanceArn property. |
| exit | string[] | exitCode property. |
| log | string[] | logStreamName property. |
| network | any[] | networkInterfaces property. |
| task | string[] | taskArn property. |
containerInstanceArn?
Type:
string[]
(optional, default: Do not filter on this field)
containerInstanceArn property.
Specify an array of string values to match this event if the actual value of containerInstanceArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
exitCode?
Type:
string[]
(optional, default: Do not filter on this field)
exitCode property.
Specify an array of string values to match this event if the actual value of exitCode is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
logStreamName?
Type:
string[]
(optional, default: Do not filter on this field)
logStreamName property.
Specify an array of string values to match this event if the actual value of logStreamName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
networkInterfaces?
Type:
any[]
(optional, default: Do not filter on this field)
networkInterfaces property.
Specify an array of string values to match this event if the actual value of networkInterfaces is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
taskArn?
Type:
string[]
(optional, default: Do not filter on this field)
taskArn property.
Specify an array of string values to match this event if the actual value of taskArn 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