Interface ClusterEvents.ECSTaskStateChange.OverridesItem
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterEvents.ECSTaskStateChange.OverridesItem.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.*;
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forClusterEvents.ECSTaskStateChange.OverridesItemstatic final classAn implementation forClusterEvents.ECSTaskStateChange.OverridesItem -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.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
-
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.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
-
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
-
builder
-