pub struct Builder { /* private fields */ }
Expand description
A builder for AdvancedSecurityOptionsInput
.
Implementations§
source§impl Builder
impl Builder
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 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 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 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 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 build(self) -> AdvancedSecurityOptionsInput
pub fn build(self) -> AdvancedSecurityOptionsInput
Consumes the builder and constructs a AdvancedSecurityOptionsInput
.