Interface BatchJobStateChange.BatchJobStateChangeItem

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
BatchJobStateChange.BatchJobStateChangeItem.Jsii$Proxy
Enclosing class:
BatchJobStateChange

@Stability(Experimental) public static interface BatchJobStateChange.BatchJobStateChangeItem extends software.amazon.jsii.JsiiSerializable
(experimental) 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 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();
 
  • Method Details

    • getContainer

      @Stability(Experimental) @Nullable default BatchJobStateChange.Container1 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getStartedAt

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getStatusReason

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getStoppedAt

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      @Stability(Experimental) static BatchJobStateChange.BatchJobStateChangeItem.Builder builder()
      Returns:
      a BatchJobStateChange.BatchJobStateChangeItem.Builder of BatchJobStateChange.BatchJobStateChangeItem