Struct aws_sdk_ec2::types::builders::VerifiedAccessInstanceBuilder
source · #[non_exhaustive]pub struct VerifiedAccessInstanceBuilder { /* private fields */ }
Expand description
A builder for VerifiedAccessInstance
.
Implementations§
source§impl VerifiedAccessInstanceBuilder
impl VerifiedAccessInstanceBuilder
sourcepub fn verified_access_instance_id(self, input: impl Into<String>) -> Self
pub fn verified_access_instance_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services Verified Access instance.
sourcepub fn set_verified_access_instance_id(self, input: Option<String>) -> Self
pub fn set_verified_access_instance_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services Verified Access instance.
sourcepub fn get_verified_access_instance_id(&self) -> &Option<String>
pub fn get_verified_access_instance_id(&self) -> &Option<String>
The ID of the Amazon Web Services Verified Access instance.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description for the Amazon Web Services Verified Access instance.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description for the Amazon Web Services Verified Access instance.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description for the Amazon Web Services Verified Access instance.
sourcepub fn verified_access_trust_providers(
self,
input: VerifiedAccessTrustProviderCondensed,
) -> Self
pub fn verified_access_trust_providers( self, input: VerifiedAccessTrustProviderCondensed, ) -> Self
Appends an item to verified_access_trust_providers
.
To override the contents of this collection use set_verified_access_trust_providers
.
The IDs of the Amazon Web Services Verified Access trust providers.
sourcepub fn set_verified_access_trust_providers(
self,
input: Option<Vec<VerifiedAccessTrustProviderCondensed>>,
) -> Self
pub fn set_verified_access_trust_providers( self, input: Option<Vec<VerifiedAccessTrustProviderCondensed>>, ) -> Self
The IDs of the Amazon Web Services Verified Access trust providers.
sourcepub fn get_verified_access_trust_providers(
&self,
) -> &Option<Vec<VerifiedAccessTrustProviderCondensed>>
pub fn get_verified_access_trust_providers( &self, ) -> &Option<Vec<VerifiedAccessTrustProviderCondensed>>
The IDs of the Amazon Web Services Verified Access trust providers.
sourcepub fn creation_time(self, input: impl Into<String>) -> Self
pub fn creation_time(self, input: impl Into<String>) -> Self
The creation time.
sourcepub fn set_creation_time(self, input: Option<String>) -> Self
pub fn set_creation_time(self, input: Option<String>) -> Self
The creation time.
sourcepub fn get_creation_time(&self) -> &Option<String>
pub fn get_creation_time(&self) -> &Option<String>
The creation time.
sourcepub fn last_updated_time(self, input: impl Into<String>) -> Self
pub fn last_updated_time(self, input: impl Into<String>) -> Self
The last updated time.
sourcepub fn set_last_updated_time(self, input: Option<String>) -> Self
pub fn set_last_updated_time(self, input: Option<String>) -> Self
The last updated time.
sourcepub fn get_last_updated_time(&self) -> &Option<String>
pub fn get_last_updated_time(&self) -> &Option<String>
The last updated time.
The tags.
The tags.
sourcepub fn fips_enabled(self, input: bool) -> Self
pub fn fips_enabled(self, input: bool) -> Self
Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.
sourcepub fn set_fips_enabled(self, input: Option<bool>) -> Self
pub fn set_fips_enabled(self, input: Option<bool>) -> Self
Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.
sourcepub fn get_fips_enabled(&self) -> &Option<bool>
pub fn get_fips_enabled(&self) -> &Option<bool>
Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.
sourcepub fn build(self) -> VerifiedAccessInstance
pub fn build(self) -> VerifiedAccessInstance
Consumes the builder and constructs a VerifiedAccessInstance
.
Trait Implementations§
source§impl Clone for VerifiedAccessInstanceBuilder
impl Clone for VerifiedAccessInstanceBuilder
source§fn clone(&self) -> VerifiedAccessInstanceBuilder
fn clone(&self) -> VerifiedAccessInstanceBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for VerifiedAccessInstanceBuilder
impl Default for VerifiedAccessInstanceBuilder
source§fn default() -> VerifiedAccessInstanceBuilder
fn default() -> VerifiedAccessInstanceBuilder
source§impl PartialEq for VerifiedAccessInstanceBuilder
impl PartialEq for VerifiedAccessInstanceBuilder
source§fn eq(&self, other: &VerifiedAccessInstanceBuilder) -> bool
fn eq(&self, other: &VerifiedAccessInstanceBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VerifiedAccessInstanceBuilder
Auto Trait Implementations§
impl Freeze for VerifiedAccessInstanceBuilder
impl RefUnwindSafe for VerifiedAccessInstanceBuilder
impl Send for VerifiedAccessInstanceBuilder
impl Sync for VerifiedAccessInstanceBuilder
impl Unpin for VerifiedAccessInstanceBuilder
impl UnwindSafe for VerifiedAccessInstanceBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
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>
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 more