pub struct VerifiedAccessInstance {
pub verified_access_instance_id: String,
pub description: Option<String>,
pub creation_time: String,
pub last_updated_time: String,
pub fips_enabled: bool,
pub cidr_endpoints_custom_subdomain: Option<String>,
pub name: Option<String>,
pub trust_provider_ids: Vec<String>,
pub tags: Tags,
}Expand description
A Verified Access instance.
Fields§
§verified_access_instance_id: String§description: Option<String>§creation_time: String§last_updated_time: String§fips_enabled: bool§cidr_endpoints_custom_subdomain: Option<String>§name: Option<String>§trust_provider_ids: Vec<String>IDs of attached trust providers (resolved into condensed views in responses).
Trait Implementations§
Source§impl Clone for VerifiedAccessInstance
impl Clone for VerifiedAccessInstance
Source§fn clone(&self) -> VerifiedAccessInstance
fn clone(&self) -> VerifiedAccessInstance
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 From<&VerifiedAccessInstance> for VerifiedAccessInstanceView
impl From<&VerifiedAccessInstance> for VerifiedAccessInstanceView
Source§fn from(i: &VerifiedAccessInstance) -> Self
fn from(i: &VerifiedAccessInstance) -> Self
Converts to this type from the input type.
Source§impl From<VerifiedAccessInstanceView> for VerifiedAccessInstance
impl From<VerifiedAccessInstanceView> for VerifiedAccessInstance
Source§fn from(v: VerifiedAccessInstanceView) -> Self
fn from(v: VerifiedAccessInstanceView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VerifiedAccessInstance
impl RefUnwindSafe for VerifiedAccessInstance
impl Send for VerifiedAccessInstance
impl Sync for VerifiedAccessInstance
impl Unpin for VerifiedAccessInstance
impl UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.