Interface ClusterEvents.ECSTaskStateChange.ContainerDetails
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterEvents.ECSTaskStateChange.ContainerDetails.Jsii$Proxy
- Enclosing class:
ClusterEvents.ECSTaskStateChange
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.ecs.events.*;
ContainerDetails containerDetails = ContainerDetails.builder()
.containerArn(List.of("containerArn"))
.cpu(List.of("cpu"))
.exitCode(List.of("exitCode"))
.gpuIds(List.of("gpuIds"))
.image(List.of("image"))
.imageDigest(List.of("imageDigest"))
.lastStatus(List.of("lastStatus"))
.memory(List.of("memory"))
.memoryReservation(List.of("memoryReservation"))
.name(List.of("name"))
.networkBindings(List.of(NetworkBindingDetails.builder()
.bindIp(List.of("bindIp"))
.containerPort(List.of("containerPort"))
.hostPort(List.of("hostPort"))
.protocol(List.of("protocol"))
.build()))
.networkInterfaces(List.of(NetworkInterfaceDetails.builder()
.attachmentId(List.of("attachmentId"))
.ipv6Address(List.of("ipv6Address"))
.privateIpv4Address(List.of("privateIpv4Address"))
.build()))
.reason(List.of("reason"))
.runtimeId(List.of("runtimeId"))
.taskArn(List.of("taskArn"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forClusterEvents.ECSTaskStateChange.ContainerDetailsstatic final classAn implementation forClusterEvents.ECSTaskStateChange.ContainerDetails -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) containerArn property.getCpu()(experimental) cpu property.(experimental) exitCode property.(experimental) gpuIds property.getImage()(experimental) image property.(experimental) imageDigest property.(experimental) lastStatus property.(experimental) memory property.(experimental) memoryReservation property.getName()(experimental) name property.(experimental) networkBindings property.(experimental) networkInterfaces property.(experimental) reason property.(experimental) runtimeId property.(experimental) taskArn property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerArn
(experimental) containerArn property.Specify an array of string values to match this event if the actual value of containerArn 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
-
getCpu
(experimental) cpu property.Specify an array of string values to match this event if the actual value of cpu 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
-
getGpuIds
(experimental) gpuIds property.Specify an array of string values to match this event if the actual value of gpuIds 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
-
getImage
(experimental) image property.Specify an array of string values to match this event if the actual value of image 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
-
getImageDigest
(experimental) imageDigest property.Specify an array of string values to match this event if the actual value of imageDigest 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
-
getLastStatus
(experimental) lastStatus property.Specify an array of string values to match this event if the actual value of lastStatus 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
-
getMemory
(experimental) memory property.Specify an array of string values to match this event if the actual value of memory 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
-
getMemoryReservation
(experimental) memoryReservation property.Specify an array of string values to match this event if the actual value of memoryReservation 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
-
getName
(experimental) name property.Specify an array of string values to match this event if the actual value of name 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
-
getNetworkBindings
@Stability(Experimental) @Nullable default List<ClusterEvents.ECSTaskStateChange.NetworkBindingDetails> getNetworkBindings()(experimental) networkBindings property.Specify an array of string values to match this event if the actual value of networkBindings 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
@Stability(Experimental) @Nullable default List<ClusterEvents.ECSTaskStateChange.NetworkInterfaceDetails> 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
-
getReason
(experimental) reason property.Specify an array of string values to match this event if the actual value of reason 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
-
getRuntimeId
(experimental) runtimeId property.Specify an array of string values to match this event if the actual value of runtimeId 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
-