interface ResponseElementsItemItem1
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Events.ClusterEvents.AWSAPICallViaCloudTrail.ResponseElementsItemItem1 |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/events#ClusterEvents_AWSAPICallViaCloudTrail_ResponseElementsItemItem1 |
Java | software.amazon.awscdk.mixins.preview.services.ecs.events.ClusterEvents.AWSAPICallViaCloudTrail.ResponseElementsItemItem1 |
Python | aws_cdk.mixins_preview.aws_ecs.events.ClusterEvents.AWSAPICallViaCloudTrail.ResponseElementsItemItem1 |
TypeScript | @aws-cdk/mixins-preview ยป aws_ecs ยป events ยป ClusterEvents ยป AWSAPICallViaCloudTrail ยป ResponseElementsItemItem1 |
Type definition for ResponseElementsItemItem_1.
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 networkInterfaces: any;
const responseElementsItemItem1: ecs_events.ClusterEvents.AWSAPICallViaCloudTrail.ResponseElementsItemItem1 = {
containerArn: ['containerArn'],
cpu: ['cpu'],
image: ['image'],
lastStatus: ['lastStatus'],
memory: ['memory'],
name: ['name'],
networkInterfaces: [networkInterfaces],
taskArn: ['taskArn'],
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string[] | containerArn property. |
| cpu? | string[] | cpu property. |
| image? | string[] | image property. |
| last | string[] | lastStatus property. |
| memory? | string[] | memory property. |
| name? | string[] | name property. |
| network | any[] | networkInterfaces property. |
| task | string[] | taskArn property. |
containerArn?
Type:
string[]
(optional, default: Do not filter on this field)
containerArn property.
Specify an array of string values to match this event if the actual value of containerArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
cpu?
Type:
string[]
(optional, default: Do not filter on this field)
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.
image?
Type:
string[]
(optional, default: Do not filter on this field)
image property.
Specify an array of string values to match this event if the actual value of image is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
lastStatus?
Type:
string[]
(optional, default: Do not filter on this field)
lastStatus property.
Specify an array of string values to match this event if the actual value of lastStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
memory?
Type:
string[]
(optional, default: Do not filter on this field)
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.
name?
Type:
string[]
(optional, default: Do not filter on this field)
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.
networkInterfaces?
Type:
any[]
(optional, default: Do not filter on this field)
networkInterfaces property.
Specify an array of string values to match this event if the actual value of networkInterfaces is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
taskArn?
Type:
string[]
(optional, default: Do not filter on this field)
taskArn property.
Specify an array of string values to match this event if the actual value of taskArn 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