#[non_exhaustive]pub struct AdvancedSecurityOptionsInputBuilder { /* private fields */ }
Expand description
A builder for AdvancedSecurityOptionsInput
.
Implementations§
source§impl AdvancedSecurityOptionsInputBuilder
impl AdvancedSecurityOptionsInputBuilder
sourcepub fn set_enabled(self, input: Option<bool>) -> Self
pub fn set_enabled(self, input: Option<bool>) -> Self
True if advanced security is enabled.
sourcepub fn get_enabled(&self) -> &Option<bool>
pub fn get_enabled(&self) -> &Option<bool>
True if advanced security is enabled.
sourcepub fn internal_user_database_enabled(self, input: bool) -> Self
pub fn internal_user_database_enabled(self, input: bool) -> Self
True if the internal user database is enabled.
sourcepub fn set_internal_user_database_enabled(self, input: Option<bool>) -> Self
pub fn set_internal_user_database_enabled(self, input: Option<bool>) -> Self
True if the internal user database is enabled.
sourcepub fn get_internal_user_database_enabled(&self) -> &Option<bool>
pub fn get_internal_user_database_enabled(&self) -> &Option<bool>
True if the internal user database is enabled.
sourcepub fn master_user_options(self, input: MasterUserOptions) -> Self
pub fn master_user_options(self, input: MasterUserOptions) -> Self
Credentials for the master user: username and password, ARN, or both.
sourcepub fn set_master_user_options(self, input: Option<MasterUserOptions>) -> Self
pub fn set_master_user_options(self, input: Option<MasterUserOptions>) -> Self
Credentials for the master user: username and password, ARN, or both.
sourcepub fn get_master_user_options(&self) -> &Option<MasterUserOptions>
pub fn get_master_user_options(&self) -> &Option<MasterUserOptions>
Credentials for the master user: username and password, ARN, or both.
sourcepub fn saml_options(self, input: SamlOptionsInput) -> Self
pub fn saml_options(self, input: SamlOptionsInput) -> Self
Specifies the SAML application configuration for the domain.
sourcepub fn set_saml_options(self, input: Option<SamlOptionsInput>) -> Self
pub fn set_saml_options(self, input: Option<SamlOptionsInput>) -> Self
Specifies the SAML application configuration for the domain.
sourcepub fn get_saml_options(&self) -> &Option<SamlOptionsInput>
pub fn get_saml_options(&self) -> &Option<SamlOptionsInput>
Specifies the SAML application configuration for the domain.
sourcepub fn anonymous_auth_enabled(self, input: bool) -> Self
pub fn anonymous_auth_enabled(self, input: bool) -> Self
True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.
sourcepub fn set_anonymous_auth_enabled(self, input: Option<bool>) -> Self
pub fn set_anonymous_auth_enabled(self, input: Option<bool>) -> Self
True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.
sourcepub fn get_anonymous_auth_enabled(&self) -> &Option<bool>
pub fn get_anonymous_auth_enabled(&self) -> &Option<bool>
True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.
sourcepub fn build(self) -> AdvancedSecurityOptionsInput
pub fn build(self) -> AdvancedSecurityOptionsInput
Consumes the builder and constructs a AdvancedSecurityOptionsInput
.
Trait Implementations§
source§impl Clone for AdvancedSecurityOptionsInputBuilder
impl Clone for AdvancedSecurityOptionsInputBuilder
source§fn clone(&self) -> AdvancedSecurityOptionsInputBuilder
fn clone(&self) -> AdvancedSecurityOptionsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AdvancedSecurityOptionsInputBuilder
impl Default for AdvancedSecurityOptionsInputBuilder
source§fn default() -> AdvancedSecurityOptionsInputBuilder
fn default() -> AdvancedSecurityOptionsInputBuilder
source§impl PartialEq for AdvancedSecurityOptionsInputBuilder
impl PartialEq for AdvancedSecurityOptionsInputBuilder
source§fn eq(&self, other: &AdvancedSecurityOptionsInputBuilder) -> bool
fn eq(&self, other: &AdvancedSecurityOptionsInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AdvancedSecurityOptionsInputBuilder
Auto Trait Implementations§
impl Freeze for AdvancedSecurityOptionsInputBuilder
impl RefUnwindSafe for AdvancedSecurityOptionsInputBuilder
impl Send for AdvancedSecurityOptionsInputBuilder
impl Sync for AdvancedSecurityOptionsInputBuilder
impl Unpin for AdvancedSecurityOptionsInputBuilder
impl UnwindSafe for AdvancedSecurityOptionsInputBuilder
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