#[non_exhaustive]pub struct LaunchTemplateEnaSrdUdpSpecification {
pub ena_srd_udp_enabled: Option<bool>,
}
Expand description
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ena_srd_udp_enabled: Option<bool>
Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.
Implementations§
source§impl LaunchTemplateEnaSrdUdpSpecification
impl LaunchTemplateEnaSrdUdpSpecification
sourcepub fn ena_srd_udp_enabled(&self) -> Option<bool>
pub fn ena_srd_udp_enabled(&self) -> Option<bool>
Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.
source§impl LaunchTemplateEnaSrdUdpSpecification
impl LaunchTemplateEnaSrdUdpSpecification
sourcepub fn builder() -> LaunchTemplateEnaSrdUdpSpecificationBuilder
pub fn builder() -> LaunchTemplateEnaSrdUdpSpecificationBuilder
Creates a new builder-style object to manufacture LaunchTemplateEnaSrdUdpSpecification
.
Trait Implementations§
source§impl Clone for LaunchTemplateEnaSrdUdpSpecification
impl Clone for LaunchTemplateEnaSrdUdpSpecification
source§fn clone(&self) -> LaunchTemplateEnaSrdUdpSpecification
fn clone(&self) -> LaunchTemplateEnaSrdUdpSpecification
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for LaunchTemplateEnaSrdUdpSpecification
impl PartialEq for LaunchTemplateEnaSrdUdpSpecification
source§fn eq(&self, other: &LaunchTemplateEnaSrdUdpSpecification) -> bool
fn eq(&self, other: &LaunchTemplateEnaSrdUdpSpecification) -> bool
self
and other
values to be equal, and is used
by ==
.