interface NetworkInterfaceDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Events.ClusterEvents.ECSTaskStateChange.NetworkInterfaceDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/events#ClusterEvents_ECSTaskStateChange_NetworkInterfaceDetails |
Java | software.amazon.awscdk.mixins.preview.services.ecs.events.ClusterEvents.ECSTaskStateChange.NetworkInterfaceDetails |
Python | aws_cdk.mixins_preview.aws_ecs.events.ClusterEvents.ECSTaskStateChange.NetworkInterfaceDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_ecs ยป events ยป ClusterEvents ยป ECSTaskStateChange ยป NetworkInterfaceDetails |
Type definition for NetworkInterfaceDetails.
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';
const networkInterfaceDetails: ecs_events.ClusterEvents.ECSTaskStateChange.NetworkInterfaceDetails = {
attachmentId: ['attachmentId'],
ipv6Address: ['ipv6Address'],
privateIpv4Address: ['privateIpv4Address'],
};
Properties
| Name | Type | Description |
|---|---|---|
| attachment | string[] | attachmentId property. |
| ipv6 | string[] | ipv6Address property. |
| private | string[] | privateIpv4Address property. |
attachmentId?
Type:
string[]
(optional, default: Do not filter on this field)
attachmentId property.
Specify an array of string values to match this event if the actual value of attachmentId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
ipv6Address?
Type:
string[]
(optional, default: Do not filter on this field)
ipv6Address property.
Specify an array of string values to match this event if the actual value of ipv6Address is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
privateIpv4Address?
Type:
string[]
(optional, default: Do not filter on this field)
privateIpv4Address property.
Specify an array of string values to match this event if the actual value of privateIpv4Address 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