Struct aws_sdk_ec2::types::VerifiedAccessInstance
source · #[non_exhaustive]pub struct VerifiedAccessInstance {
pub verified_access_instance_id: Option<String>,
pub description: Option<String>,
pub verified_access_trust_providers: Option<Vec<VerifiedAccessTrustProviderCondensed>>,
pub creation_time: Option<String>,
pub last_updated_time: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes a Verified Access instance.
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.verified_access_instance_id: Option<String>
The ID of the Amazon Web Services Verified Access instance.
description: Option<String>
A description for the Amazon Web Services Verified Access instance.
verified_access_trust_providers: Option<Vec<VerifiedAccessTrustProviderCondensed>>
The IDs of the Amazon Web Services Verified Access trust providers.
creation_time: Option<String>
The creation time.
last_updated_time: Option<String>
The last updated time.
The tags.
Implementations§
source§impl VerifiedAccessInstance
impl VerifiedAccessInstance
sourcepub fn verified_access_instance_id(&self) -> Option<&str>
pub fn verified_access_instance_id(&self) -> Option<&str>
The ID of the Amazon Web Services Verified Access instance.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the Amazon Web Services Verified Access instance.
sourcepub fn verified_access_trust_providers(
&self
) -> Option<&[VerifiedAccessTrustProviderCondensed]>
pub fn verified_access_trust_providers( &self ) -> Option<&[VerifiedAccessTrustProviderCondensed]>
The IDs of the Amazon Web Services Verified Access trust providers.
sourcepub fn creation_time(&self) -> Option<&str>
pub fn creation_time(&self) -> Option<&str>
The creation time.
sourcepub fn last_updated_time(&self) -> Option<&str>
pub fn last_updated_time(&self) -> Option<&str>
The last updated time.
The tags.
source§impl VerifiedAccessInstance
impl VerifiedAccessInstance
sourcepub fn builder() -> VerifiedAccessInstanceBuilder
pub fn builder() -> VerifiedAccessInstanceBuilder
Creates a new builder-style object to manufacture VerifiedAccessInstance
.
Trait Implementations§
source§impl Clone for VerifiedAccessInstance
impl Clone for VerifiedAccessInstance
source§fn clone(&self) -> VerifiedAccessInstance
fn clone(&self) -> VerifiedAccessInstance
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 VerifiedAccessInstance
impl Debug for VerifiedAccessInstance
source§impl PartialEq<VerifiedAccessInstance> for VerifiedAccessInstance
impl PartialEq<VerifiedAccessInstance> for VerifiedAccessInstance
source§fn eq(&self, other: &VerifiedAccessInstance) -> bool
fn eq(&self, other: &VerifiedAccessInstance) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VerifiedAccessInstance
Auto Trait Implementations§
impl RefUnwindSafe for VerifiedAccessInstance
impl Send for VerifiedAccessInstance
impl Sync for VerifiedAccessInstance
impl Unpin for VerifiedAccessInstance
impl UnwindSafe for VerifiedAccessInstance
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