Struct aws_sdk_ec2::types::VerifiedAccessEndpointStatus
source · #[non_exhaustive]pub struct VerifiedAccessEndpointStatus {
pub code: Option<VerifiedAccessEndpointStatusCode>,
pub message: Option<String>,
}
Expand description
Describes the status of a Verified Access endpoint.
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.code: Option<VerifiedAccessEndpointStatusCode>
The status code of the Verified Access endpoint.
message: Option<String>
The status message of the Verified Access endpoint.
Implementations§
source§impl VerifiedAccessEndpointStatus
impl VerifiedAccessEndpointStatus
sourcepub fn builder() -> VerifiedAccessEndpointStatusBuilder
pub fn builder() -> VerifiedAccessEndpointStatusBuilder
Creates a new builder-style object to manufacture VerifiedAccessEndpointStatus
.
Trait Implementations§
source§impl Clone for VerifiedAccessEndpointStatus
impl Clone for VerifiedAccessEndpointStatus
source§fn clone(&self) -> VerifiedAccessEndpointStatus
fn clone(&self) -> VerifiedAccessEndpointStatus
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 VerifiedAccessEndpointStatus
impl Debug for VerifiedAccessEndpointStatus
source§impl PartialEq<VerifiedAccessEndpointStatus> for VerifiedAccessEndpointStatus
impl PartialEq<VerifiedAccessEndpointStatus> for VerifiedAccessEndpointStatus
source§fn eq(&self, other: &VerifiedAccessEndpointStatus) -> bool
fn eq(&self, other: &VerifiedAccessEndpointStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VerifiedAccessEndpointStatus
Auto Trait Implementations§
impl RefUnwindSafe for VerifiedAccessEndpointStatus
impl Send for VerifiedAccessEndpointStatus
impl Sync for VerifiedAccessEndpointStatus
impl Unpin for VerifiedAccessEndpointStatus
impl UnwindSafe for VerifiedAccessEndpointStatus
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