#[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 to enable fine-grained access control.
sourcepub fn get_enabled(&self) -> &Option<bool>
pub fn get_enabled(&self) -> &Option<bool>
True to enable fine-grained access control.
sourcepub fn internal_user_database_enabled(self, input: bool) -> Self
pub fn internal_user_database_enabled(self, input: bool) -> Self
True to enable the internal user database.
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 to enable the internal user database.
sourcepub fn get_internal_user_database_enabled(&self) -> &Option<bool>
pub fn get_internal_user_database_enabled(&self) -> &Option<bool>
True to enable the internal user database.
sourcepub fn master_user_options(self, input: MasterUserOptions) -> Self
pub fn master_user_options(self, input: MasterUserOptions) -> Self
Container for information about the master user.
sourcepub fn set_master_user_options(self, input: Option<MasterUserOptions>) -> Self
pub fn set_master_user_options(self, input: Option<MasterUserOptions>) -> Self
Container for information about the master user.
sourcepub fn get_master_user_options(&self) -> &Option<MasterUserOptions>
pub fn get_master_user_options(&self) -> &Option<MasterUserOptions>
Container for information about the master user.
sourcepub fn saml_options(self, input: SamlOptionsInput) -> Self
pub fn saml_options(self, input: SamlOptionsInput) -> Self
Container for information about the SAML configuration for OpenSearch Dashboards.
sourcepub fn set_saml_options(self, input: Option<SamlOptionsInput>) -> Self
pub fn set_saml_options(self, input: Option<SamlOptionsInput>) -> Self
Container for information about the SAML configuration for OpenSearch Dashboards.
sourcepub fn get_saml_options(&self) -> &Option<SamlOptionsInput>
pub fn get_saml_options(&self) -> &Option<SamlOptionsInput>
Container for information about the SAML configuration for OpenSearch Dashboards.
sourcepub fn anonymous_auth_enabled(self, input: bool) -> Self
pub fn anonymous_auth_enabled(self, input: bool) -> Self
True to enable a 30-day migration period during which administrators can create role mappings. Only necessary when enabling fine-grained access control on an existing domain.
sourcepub fn set_anonymous_auth_enabled(self, input: Option<bool>) -> Self
pub fn set_anonymous_auth_enabled(self, input: Option<bool>) -> Self
True to enable a 30-day migration period during which administrators can create role mappings. Only necessary when enabling fine-grained access control on an existing domain.
sourcepub fn get_anonymous_auth_enabled(&self) -> &Option<bool>
pub fn get_anonymous_auth_enabled(&self) -> &Option<bool>
True to enable a 30-day migration period during which administrators can create role mappings. Only necessary when enabling fine-grained access control on an existing domain.
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 ==
.