Struct aws_sdk_ec2::model::NetworkInfo
source · [−]#[non_exhaustive]pub struct NetworkInfo { /* private fields */ }
Expand description
Describes the networking features of the instance type.
Implementations
sourceimpl NetworkInfo
impl NetworkInfo
sourcepub fn network_performance(&self) -> Option<&str>
pub fn network_performance(&self) -> Option<&str>
The network performance.
sourcepub fn maximum_network_interfaces(&self) -> Option<i32>
pub fn maximum_network_interfaces(&self) -> Option<i32>
The maximum number of network interfaces for the instance type.
sourcepub fn maximum_network_cards(&self) -> Option<i32>
pub fn maximum_network_cards(&self) -> Option<i32>
The maximum number of physical network cards that can be allocated to the instance.
sourcepub fn default_network_card_index(&self) -> Option<i32>
pub fn default_network_card_index(&self) -> Option<i32>
The index of the default network card, starting at 0.
sourcepub fn network_cards(&self) -> Option<&[NetworkCardInfo]>
pub fn network_cards(&self) -> Option<&[NetworkCardInfo]>
Describes the network cards for the instance type.
sourcepub fn ipv4_addresses_per_interface(&self) -> Option<i32>
pub fn ipv4_addresses_per_interface(&self) -> Option<i32>
The maximum number of IPv4 addresses per network interface.
sourcepub fn ipv6_addresses_per_interface(&self) -> Option<i32>
pub fn ipv6_addresses_per_interface(&self) -> Option<i32>
The maximum number of IPv6 addresses per network interface.
sourcepub fn ipv6_supported(&self) -> Option<bool>
pub fn ipv6_supported(&self) -> Option<bool>
Indicates whether IPv6 is supported.
sourcepub fn ena_support(&self) -> Option<&EnaSupport>
pub fn ena_support(&self) -> Option<&EnaSupport>
Indicates whether Elastic Network Adapter (ENA) is supported.
sourcepub fn efa_supported(&self) -> Option<bool>
pub fn efa_supported(&self) -> Option<bool>
Indicates whether Elastic Fabric Adapter (EFA) is supported.
sourcepub fn efa_info(&self) -> Option<&EfaInfo>
pub fn efa_info(&self) -> Option<&EfaInfo>
Describes the Elastic Fabric Adapters for the instance type.
sourcepub fn encryption_in_transit_supported(&self) -> Option<bool>
pub fn encryption_in_transit_supported(&self) -> Option<bool>
Indicates whether the instance type automatically encrypts in-transit traffic between instances.
sourceimpl NetworkInfo
impl NetworkInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NetworkInfo
.
Trait Implementations
sourceimpl Clone for NetworkInfo
impl Clone for NetworkInfo
sourcefn clone(&self) -> NetworkInfo
fn clone(&self) -> NetworkInfo
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more