interface EnaSrdUdpSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnNetworkInterfaceAttachmentPropsMixin.EnaSrdUdpSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnNetworkInterfaceAttachmentPropsMixin_EnaSrdUdpSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnNetworkInterfaceAttachmentPropsMixin.EnaSrdUdpSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkInterfaceAttachmentPropsMixin.EnaSrdUdpSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnNetworkInterfaceAttachmentPropsMixin » EnaSrdUdpSpecificationProperty |
ENA Express is compatible with both TCP and UDP transport protocols.
When it's enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const enaSrdUdpSpecificationProperty: ec2_mixins.CfnNetworkInterfaceAttachmentPropsMixin.EnaSrdUdpSpecificationProperty = {
enaSrdUdpEnabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| ena | boolean | IResolvable | Indicates whether UDP traffic to and from the instance uses ENA Express. |
enaSrdUdpEnabled?
Type:
boolean | IResolvable
(optional)
Indicates whether UDP traffic to and from the instance uses ENA Express.
To specify this setting, you must first enable ENA Express.

.NET
Go
Java
Python
TypeScript