Interface BatchJobStateChange.Container1
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BatchJobStateChange.Container1.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;
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBatchJobStateChange.Container1static final classAn implementation forBatchJobStateChange.Container1 -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) containerInstanceArn property.(experimental) exitCode property.(experimental) logStreamName property.(experimental) networkInterfaces property.(experimental) taskArn property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-