Interface ClusterEvents.ECSTaskStateChange.ContainerDetails

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ClusterEvents.ECSTaskStateChange.ContainerDetails.Jsii$Proxy
Enclosing class:
ClusterEvents.ECSTaskStateChange

@Stability(Experimental) public static interface ClusterEvents.ECSTaskStateChange.ContainerDetails extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for ContainerDetails.

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();
 
  • Method Details

    • getContainerArn

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

      Default: - Do not filter on this field

    • getCpu

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

    • getGpuIds

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

      Default: - Do not filter on this field

    • getImage

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

      Default: - Do not filter on this field

    • getImageDigest

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

      Default: - Do not filter on this field

    • getLastStatus

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

      Default: - Do not filter on this field

    • getMemory

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

      Default: - Do not filter on this field

    • getMemoryReservation

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

      Default: - Do not filter on this field

    • getName

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

      Default: - Do not filter on this field

    • getReason

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

      Default: - Do not filter on this field

    • getRuntimeId

      @Stability(Experimental) @Nullable default List<String> 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.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 ClusterEvents.ECSTaskStateChange.ContainerDetails.Builder builder()
      Returns:
      a ClusterEvents.ECSTaskStateChange.ContainerDetails.Builder of ClusterEvents.ECSTaskStateChange.ContainerDetails