Interface ClusterEvents.AWSAPICallViaCloudTrail.Overrides1
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterEvents.AWSAPICallViaCloudTrail.Overrides1.Jsii$Proxy
- Enclosing class:
ClusterEvents.AWSAPICallViaCloudTrail
@Stability(Experimental)
public static interface ClusterEvents.AWSAPICallViaCloudTrail.Overrides1
extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for Overrides_1.
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.*;
Object environment;
Object inferenceAcceleratorOverrides;
Object resourceRequirements;
Overrides1 overrides1 = Overrides1.builder()
.containerOverrides(List.of(Overrides1Item.builder()
.command(List.of("command"))
.cpu(List.of("cpu"))
.environment(List.of(environment))
.memory(List.of("memory"))
.name(List.of("name"))
.resourceRequirements(List.of(resourceRequirements))
.build()))
.inferenceAcceleratorOverrides(List.of(inferenceAcceleratorOverrides))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forClusterEvents.AWSAPICallViaCloudTrail.Overrides1static final classAn implementation forClusterEvents.AWSAPICallViaCloudTrail.Overrides1 -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) containerOverrides property.(experimental) inferenceAcceleratorOverrides property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerOverrides
@Stability(Experimental) @Nullable default List<ClusterEvents.AWSAPICallViaCloudTrail.Overrides1Item> getContainerOverrides()(experimental) containerOverrides property.Specify an array of string values to match this event if the actual value of containerOverrides 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
-
getInferenceAcceleratorOverrides
(experimental) inferenceAcceleratorOverrides property.Specify an array of string values to match this event if the actual value of inferenceAcceleratorOverrides 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
-