interface ResponseElements
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Events.ClusterEvents.AWSAPICallViaCloudTrail.ResponseElements |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/events#ClusterEvents_AWSAPICallViaCloudTrail_ResponseElements |
Java | software.amazon.awscdk.mixins.preview.services.ecs.events.ClusterEvents.AWSAPICallViaCloudTrail.ResponseElements |
Python | aws_cdk.mixins_preview.aws_ecs.events.ClusterEvents.AWSAPICallViaCloudTrail.ResponseElements |
TypeScript | @aws-cdk/mixins-preview ยป aws_ecs ยป events ยป ClusterEvents ยป AWSAPICallViaCloudTrail ยป ResponseElements |
Type definition for ResponseElements.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as ecs_events } from '@aws-cdk/mixins-preview/aws-ecs';
declare const environment: any;
declare const inferenceAcceleratorOverrides: any;
declare const networkInterfaces: any;
declare const resourceRequirements: any;
declare const tags: any;
const responseElements: ecs_events.ClusterEvents.AWSAPICallViaCloudTrail.ResponseElements = {
acknowledgment: ['acknowledgment'],
endpoint: ['endpoint'],
failures: ['failures'],
tasks: [{
attachments: [{
details: [{
name: ['name'],
value: ['value'],
}],
id: ['id'],
status: ['status'],
type: ['type'],
}],
clusterArn: ['clusterArn'],
containerInstanceArn: ['containerInstanceArn'],
containers: [{
containerArn: ['containerArn'],
cpu: ['cpu'],
image: ['image'],
lastStatus: ['lastStatus'],
memory: ['memory'],
name: ['name'],
networkInterfaces: [networkInterfaces],
taskArn: ['taskArn'],
}],
cpu: ['cpu'],
createdAt: ['createdAt'],
desiredStatus: ['desiredStatus'],
group: ['group'],
lastStatus: ['lastStatus'],
launchType: ['launchType'],
memory: ['memory'],
overrides: {
containerOverrides: [{
command: ['command'],
cpu: ['cpu'],
environment: [environment],
memory: ['memory'],
name: ['name'],
resourceRequirements: [resourceRequirements],
}],
inferenceAcceleratorOverrides: [inferenceAcceleratorOverrides],
},
platformVersion: ['platformVersion'],
startedBy: ['startedBy'],
tags: [tags],
taskArn: ['taskArn'],
taskDefinitionArn: ['taskDefinitionArn'],
version: ['version'],
}],
telemetryEndpoint: ['telemetryEndpoint'],
};
Properties
| Name | Type | Description |
|---|---|---|
| acknowledgment? | string[] | acknowledgment property. |
| endpoint? | string[] | endpoint property. |
| failures? | string[] | failures property. |
| tasks? | Response[] | tasks property. |
| telemetry | string[] | telemetryEndpoint property. |
acknowledgment?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
endpoint?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
failures?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
tasks?
Type:
Response[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
telemetryEndpoint?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript