Struct aws_sdk_ec2::types::AsnAssociation
source · #[non_exhaustive]pub struct AsnAssociation {
pub asn: Option<String>,
pub cidr: Option<String>,
pub status_message: Option<String>,
pub state: Option<AsnAssociationState>,
}
Expand description
An Autonomous System Number (ASN) and BYOIP CIDR association.
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.asn: Option<String>
The association's ASN.
cidr: Option<String>
The association's CIDR.
status_message: Option<String>
The association's status message.
state: Option<AsnAssociationState>
The association's state.
Implementations§
source§impl AsnAssociation
impl AsnAssociation
sourcepub fn builder() -> AsnAssociationBuilder
pub fn builder() -> AsnAssociationBuilder
Creates a new builder-style object to manufacture AsnAssociation
.
Trait Implementations§
source§impl Clone for AsnAssociation
impl Clone for AsnAssociation
source§fn clone(&self) -> AsnAssociation
fn clone(&self) -> AsnAssociation
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 AsnAssociation
impl Debug for AsnAssociation
source§impl PartialEq for AsnAssociation
impl PartialEq for AsnAssociation
source§fn eq(&self, other: &AsnAssociation) -> bool
fn eq(&self, other: &AsnAssociation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AsnAssociation
Auto Trait Implementations§
impl RefUnwindSafe for AsnAssociation
impl Send for AsnAssociation
impl Sync for AsnAssociation
impl Unpin for AsnAssociation
impl UnwindSafe for AsnAssociation
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.