Interface BatchJobStateChange.BatchJobStateChangeItem
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BatchJobStateChange.BatchJobStateChangeItem.Jsii$Proxy
- Enclosing class:
BatchJobStateChange
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.batch.events.*;
Object networkInterfaces;
BatchJobStateChangeItem batchJobStateChangeItem = BatchJobStateChangeItem.builder()
.container(Container1.builder()
.containerInstanceArn(List.of("containerInstanceArn"))
.exitCode(List.of("exitCode"))
.logStreamName(List.of("logStreamName"))
.networkInterfaces(List.of(networkInterfaces))
.taskArn(List.of("taskArn"))
.build())
.startedAt(List.of("startedAt"))
.statusReason(List.of("statusReason"))
.stoppedAt(List.of("stoppedAt"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBatchJobStateChange.BatchJobStateChangeItemstatic final classAn implementation forBatchJobStateChange.BatchJobStateChangeItem -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default BatchJobStateChange.Container1(experimental) container property.(experimental) startedAt property.(experimental) statusReason property.(experimental) stoppedAt property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainer
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getStartedAt
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getStatusReason
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getStoppedAt
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-