Interface ClusterEvents.AWSAPICallViaCloudTrail.ResponseElements
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterEvents.AWSAPICallViaCloudTrail.ResponseElements.Jsii$Proxy
- Enclosing class:
ClusterEvents.AWSAPICallViaCloudTrail
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 networkInterfaces;
Object resourceRequirements;
Object tags;
ResponseElements responseElements = ResponseElements.builder()
.acknowledgment(List.of("acknowledgment"))
.endpoint(List.of("endpoint"))
.failures(List.of("failures"))
.tasks(List.of(ResponseElementsItem.builder()
.attachments(List.of(ResponseElementsItemItem.builder()
.details(List.of(ResponseElementsItemItemItem.builder()
.name(List.of("name"))
.value(List.of("value"))
.build()))
.id(List.of("id"))
.status(List.of("status"))
.type(List.of("type"))
.build()))
.clusterArn(List.of("clusterArn"))
.containerInstanceArn(List.of("containerInstanceArn"))
.containers(List.of(ResponseElementsItemItem1.builder()
.containerArn(List.of("containerArn"))
.cpu(List.of("cpu"))
.image(List.of("image"))
.lastStatus(List.of("lastStatus"))
.memory(List.of("memory"))
.name(List.of("name"))
.networkInterfaces(List.of(networkInterfaces))
.taskArn(List.of("taskArn"))
.build()))
.cpu(List.of("cpu"))
.createdAt(List.of("createdAt"))
.desiredStatus(List.of("desiredStatus"))
.group(List.of("group"))
.lastStatus(List.of("lastStatus"))
.launchType(List.of("launchType"))
.memory(List.of("memory"))
.overrides(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())
.platformVersion(List.of("platformVersion"))
.startedBy(List.of("startedBy"))
.tags(List.of(tags))
.taskArn(List.of("taskArn"))
.taskDefinitionArn(List.of("taskDefinitionArn"))
.version(List.of("version"))
.build()))
.telemetryEndpoint(List.of("telemetryEndpoint"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forClusterEvents.AWSAPICallViaCloudTrail.ResponseElementsstatic final classAn implementation forClusterEvents.AWSAPICallViaCloudTrail.ResponseElements -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcknowledgment
(experimental) acknowledgment property.Specify an array of string values to match this event if the actual value of acknowledgment 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
-
getEndpoint
(experimental) endpoint property.Specify an array of string values to match this event if the actual value of endpoint 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
-
getFailures
(experimental) failures property.Specify an array of string values to match this event if the actual value of failures 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
-
getTasks
@Stability(Experimental) @Nullable default List<ClusterEvents.AWSAPICallViaCloudTrail.ResponseElementsItem> getTasks()(experimental) tasks property.Specify an array of string values to match this event if the actual value of tasks 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
-
getTelemetryEndpoint
(experimental) telemetryEndpoint property.Specify an array of string values to match this event if the actual value of telemetryEndpoint 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
@Stability(Experimental) static ClusterEvents.AWSAPICallViaCloudTrail.ResponseElements.Builder builder()
-