Class: Aws::EC2::Types::AttachmentEnaSrdUdpSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::AttachmentEnaSrdUdpSpecification
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
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.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #ena_srd_udp_enabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether UDP traffic to and from the instance uses ENA Express.
 
Instance Attribute Details
#ena_srd_udp_enabled ⇒ Boolean
Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.
      3241 3242 3243 3244 3245  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 3241 class AttachmentEnaSrdUdpSpecification < Struct.new( :ena_srd_udp_enabled) SENSITIVE = [] include Aws::Structure end  |