Struct aws_sdk_ec2::operation::associate_client_vpn_target_network::AssociateClientVpnTargetNetworkOutput
source · #[non_exhaustive]pub struct AssociateClientVpnTargetNetworkOutput {
pub association_id: Option<String>,
pub status: Option<AssociationStatus>,
/* private fields */
}
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.association_id: Option<String>
The unique ID of the target network association.
status: Option<AssociationStatus>
The current state of the target network association.
Implementations§
source§impl AssociateClientVpnTargetNetworkOutput
impl AssociateClientVpnTargetNetworkOutput
sourcepub fn association_id(&self) -> Option<&str>
pub fn association_id(&self) -> Option<&str>
The unique ID of the target network association.
sourcepub fn status(&self) -> Option<&AssociationStatus>
pub fn status(&self) -> Option<&AssociationStatus>
The current state of the target network association.
source§impl AssociateClientVpnTargetNetworkOutput
impl AssociateClientVpnTargetNetworkOutput
sourcepub fn builder() -> AssociateClientVpnTargetNetworkOutputBuilder
pub fn builder() -> AssociateClientVpnTargetNetworkOutputBuilder
Creates a new builder-style object to manufacture AssociateClientVpnTargetNetworkOutput
.
Trait Implementations§
source§impl Clone for AssociateClientVpnTargetNetworkOutput
impl Clone for AssociateClientVpnTargetNetworkOutput
source§fn clone(&self) -> AssociateClientVpnTargetNetworkOutput
fn clone(&self) -> AssociateClientVpnTargetNetworkOutput
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 PartialEq<AssociateClientVpnTargetNetworkOutput> for AssociateClientVpnTargetNetworkOutput
impl PartialEq<AssociateClientVpnTargetNetworkOutput> for AssociateClientVpnTargetNetworkOutput
source§fn eq(&self, other: &AssociateClientVpnTargetNetworkOutput) -> bool
fn eq(&self, other: &AssociateClientVpnTargetNetworkOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for AssociateClientVpnTargetNetworkOutput
impl RequestId for AssociateClientVpnTargetNetworkOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for AssociateClientVpnTargetNetworkOutput
Auto Trait Implementations§
impl RefUnwindSafe for AssociateClientVpnTargetNetworkOutput
impl Send for AssociateClientVpnTargetNetworkOutput
impl Sync for AssociateClientVpnTargetNetworkOutput
impl Unpin for AssociateClientVpnTargetNetworkOutput
impl UnwindSafe for AssociateClientVpnTargetNetworkOutput
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