Interface BatchJobStateChange.Container1

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

@Stability(Experimental) public static interface BatchJobStateChange.Container1 extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.mixins.preview.services.batch.events.*;
 Object networkInterfaces;
 Container1 container1 = Container1.builder()
         .containerInstanceArn(List.of("containerInstanceArn"))
         .exitCode(List.of("exitCode"))
         .logStreamName(List.of("logStreamName"))
         .networkInterfaces(List.of(networkInterfaces))
         .taskArn(List.of("taskArn"))
         .build();
 
  • Method Details

    • getContainerInstanceArn

      @Stability(Experimental) @Nullable default List<String> getContainerInstanceArn()
      (experimental) 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.

      Default: - Do not filter on this field

    • getExitCode

      @Stability(Experimental) @Nullable default List<String> getExitCode()
      (experimental) 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.

      Default: - Do not filter on this field

    • getLogStreamName

      @Stability(Experimental) @Nullable default List<String> getLogStreamName()
      (experimental) 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.

      Default: - Do not filter on this field

    • getNetworkInterfaces

      @Stability(Experimental) @Nullable default List<Object> getNetworkInterfaces()
      (experimental) 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.

      Default: - Do not filter on this field

    • getTaskArn

      @Stability(Experimental) @Nullable default List<String> getTaskArn()
      (experimental) 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.

      Default: - Do not filter on this field

    • builder

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