Struct aws_sdk_ec2::model::VpcIpv6CidrBlockAssociation
source · [−]#[non_exhaustive]pub struct VpcIpv6CidrBlockAssociation {
pub association_id: Option<String>,
pub ipv6_cidr_block: Option<String>,
pub ipv6_cidr_block_state: Option<VpcCidrBlockState>,
pub network_border_group: Option<String>,
pub ipv6_pool: Option<String>,
}
Expand description
Describes an IPv6 CIDR block associated with a VPC.
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.association_id: Option<String>
The association ID for the IPv6 CIDR block.
ipv6_cidr_block: Option<String>
The IPv6 CIDR block.
ipv6_cidr_block_state: Option<VpcCidrBlockState>
Information about the state of the CIDR block.
network_border_group: Option<String>
The name of the unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses, for example, us-east-1-wl1-bos-wlz-1
.
ipv6_pool: Option<String>
The ID of the IPv6 address pool from which the IPv6 CIDR block is allocated.
Implementations
sourceimpl VpcIpv6CidrBlockAssociation
impl VpcIpv6CidrBlockAssociation
sourcepub fn association_id(&self) -> Option<&str>
pub fn association_id(&self) -> Option<&str>
The association ID for the IPv6 CIDR block.
sourcepub fn ipv6_cidr_block(&self) -> Option<&str>
pub fn ipv6_cidr_block(&self) -> Option<&str>
The IPv6 CIDR block.
sourcepub fn ipv6_cidr_block_state(&self) -> Option<&VpcCidrBlockState>
pub fn ipv6_cidr_block_state(&self) -> Option<&VpcCidrBlockState>
Information about the state of the CIDR block.
sourcepub fn network_border_group(&self) -> Option<&str>
pub fn network_border_group(&self) -> Option<&str>
The name of the unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses, for example, us-east-1-wl1-bos-wlz-1
.
sourceimpl VpcIpv6CidrBlockAssociation
impl VpcIpv6CidrBlockAssociation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture VpcIpv6CidrBlockAssociation
.
Trait Implementations
sourceimpl Clone for VpcIpv6CidrBlockAssociation
impl Clone for VpcIpv6CidrBlockAssociation
sourcefn clone(&self) -> VpcIpv6CidrBlockAssociation
fn clone(&self) -> VpcIpv6CidrBlockAssociation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for VpcIpv6CidrBlockAssociation
impl Debug for VpcIpv6CidrBlockAssociation
sourceimpl PartialEq<VpcIpv6CidrBlockAssociation> for VpcIpv6CidrBlockAssociation
impl PartialEq<VpcIpv6CidrBlockAssociation> for VpcIpv6CidrBlockAssociation
sourcefn eq(&self, other: &VpcIpv6CidrBlockAssociation) -> bool
fn eq(&self, other: &VpcIpv6CidrBlockAssociation) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &VpcIpv6CidrBlockAssociation) -> bool
fn ne(&self, other: &VpcIpv6CidrBlockAssociation) -> bool
This method tests for !=
.
impl StructuralPartialEq for VpcIpv6CidrBlockAssociation
Auto Trait Implementations
impl RefUnwindSafe for VpcIpv6CidrBlockAssociation
impl Send for VpcIpv6CidrBlockAssociation
impl Sync for VpcIpv6CidrBlockAssociation
impl Unpin for VpcIpv6CidrBlockAssociation
impl UnwindSafe for VpcIpv6CidrBlockAssociation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more