Interface ClusterEvents.ECSTaskStateChange.OverridesItem

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

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

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.*;
 OverridesItem overridesItem = OverridesItem.builder()
         .command(List.of("command"))
         .cpu(List.of("cpu"))
         .environment(List.of(Map.of(
                 "environmentKey", "environment")))
         .memory(List.of("memory"))
         .name(List.of("name"))
         .build();
 
  • Method Details

    • getCommand

      @Stability(Experimental) @Nullable default List<String> getCommand()
      (experimental) command property.

      Specify an array of string values to match this event if the actual value of command 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

    • getEnvironment

      @Stability(Experimental) @Nullable default List<Map<String,String>> getEnvironment()
      (experimental) environment property.

      Specify an array of string values to match this event if the actual value of environment 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

    • 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

    • builder

      @Stability(Experimental) static ClusterEvents.ECSTaskStateChange.OverridesItem.Builder builder()
      Returns:
      a ClusterEvents.ECSTaskStateChange.OverridesItem.Builder of ClusterEvents.ECSTaskStateChange.OverridesItem