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