#[non_exhaustive]pub struct AuthenticationSummaryBuilder { /* private fields */ }
Expand description
A builder for AuthenticationSummary
.
Implementations§
source§impl AuthenticationSummaryBuilder
impl AuthenticationSummaryBuilder
sourcepub fn providers(self, input: AuthenticationProviderTypes) -> Self
pub fn providers(self, input: AuthenticationProviderTypes) -> Self
Appends an item to providers
.
To override the contents of this collection use set_providers
.
Specifies whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication.
sourcepub fn set_providers(
self,
input: Option<Vec<AuthenticationProviderTypes>>
) -> Self
pub fn set_providers( self, input: Option<Vec<AuthenticationProviderTypes>> ) -> Self
Specifies whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication.
sourcepub fn get_providers(&self) -> &Option<Vec<AuthenticationProviderTypes>>
pub fn get_providers(&self) -> &Option<Vec<AuthenticationProviderTypes>>
Specifies whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication.
sourcepub fn saml_configuration_status(self, input: SamlConfigurationStatus) -> Self
pub fn saml_configuration_status(self, input: SamlConfigurationStatus) -> Self
Specifies whether the workplace's user authentication method is fully configured.
sourcepub fn set_saml_configuration_status(
self,
input: Option<SamlConfigurationStatus>
) -> Self
pub fn set_saml_configuration_status( self, input: Option<SamlConfigurationStatus> ) -> Self
Specifies whether the workplace's user authentication method is fully configured.
sourcepub fn get_saml_configuration_status(&self) -> &Option<SamlConfigurationStatus>
pub fn get_saml_configuration_status(&self) -> &Option<SamlConfigurationStatus>
Specifies whether the workplace's user authentication method is fully configured.
sourcepub fn build(self) -> AuthenticationSummary
pub fn build(self) -> AuthenticationSummary
Consumes the builder and constructs a AuthenticationSummary
.
Trait Implementations§
source§impl Clone for AuthenticationSummaryBuilder
impl Clone for AuthenticationSummaryBuilder
source§fn clone(&self) -> AuthenticationSummaryBuilder
fn clone(&self) -> AuthenticationSummaryBuilder
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 AuthenticationSummaryBuilder
impl Debug for AuthenticationSummaryBuilder
source§impl Default for AuthenticationSummaryBuilder
impl Default for AuthenticationSummaryBuilder
source§fn default() -> AuthenticationSummaryBuilder
fn default() -> AuthenticationSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<AuthenticationSummaryBuilder> for AuthenticationSummaryBuilder
impl PartialEq<AuthenticationSummaryBuilder> for AuthenticationSummaryBuilder
source§fn eq(&self, other: &AuthenticationSummaryBuilder) -> bool
fn eq(&self, other: &AuthenticationSummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AuthenticationSummaryBuilder
Auto Trait Implementations§
impl RefUnwindSafe for AuthenticationSummaryBuilder
impl Send for AuthenticationSummaryBuilder
impl Sync for AuthenticationSummaryBuilder
impl Unpin for AuthenticationSummaryBuilder
impl UnwindSafe for AuthenticationSummaryBuilder
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