Struct aws_sdk_ec2::types::EnaSrdUdpSpecification
source · #[non_exhaustive]pub struct EnaSrdUdpSpecification {
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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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 uses ENA Express. To specify this setting, you must first enable ENA Express.
Implementations§
source§impl EnaSrdUdpSpecification
impl EnaSrdUdpSpecification
sourcepub fn ena_srd_udp_enabled(&self) -> Option<bool>
pub fn ena_srd_udp_enabled(&self) -> Option<bool>
Indicates whether UDP traffic uses ENA Express. To specify this setting, you must first enable ENA Express.
source§impl EnaSrdUdpSpecification
impl EnaSrdUdpSpecification
sourcepub fn builder() -> EnaSrdUdpSpecificationBuilder
pub fn builder() -> EnaSrdUdpSpecificationBuilder
Creates a new builder-style object to manufacture EnaSrdUdpSpecification
.
Trait Implementations§
source§impl Clone for EnaSrdUdpSpecification
impl Clone for EnaSrdUdpSpecification
source§fn clone(&self) -> EnaSrdUdpSpecification
fn clone(&self) -> EnaSrdUdpSpecification
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for EnaSrdUdpSpecification
impl Debug for EnaSrdUdpSpecification
source§impl PartialEq<EnaSrdUdpSpecification> for EnaSrdUdpSpecification
impl PartialEq<EnaSrdUdpSpecification> for EnaSrdUdpSpecification
source§fn eq(&self, other: &EnaSrdUdpSpecification) -> bool
fn eq(&self, other: &EnaSrdUdpSpecification) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EnaSrdUdpSpecification
Auto Trait Implementations§
impl RefUnwindSafe for EnaSrdUdpSpecification
impl Send for EnaSrdUdpSpecification
impl Sync for EnaSrdUdpSpecification
impl Unpin for EnaSrdUdpSpecification
impl UnwindSafe for EnaSrdUdpSpecification
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more