#[non_exhaustive]pub struct SecurityConfigDetail { /* private fields */ }
Expand description
Details about a security configuration for OpenSearch Serverless.
Implementations§
source§impl SecurityConfigDetail
impl SecurityConfigDetail
sourcepub fn type(&self) -> Option<&SecurityConfigType>
pub fn type(&self) -> Option<&SecurityConfigType>
The type of security configuration.
sourcepub fn config_version(&self) -> Option<&str>
pub fn config_version(&self) -> Option<&str>
The version of the security configuration.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the security configuration.
sourcepub fn saml_options(&self) -> Option<&SamlConfigOptions>
pub fn saml_options(&self) -> Option<&SamlConfigOptions>
SAML options for the security configuration in the form of a key-value map.
sourcepub fn created_date(&self) -> Option<i64>
pub fn created_date(&self) -> Option<i64>
The date the configuration was created.
sourcepub fn last_modified_date(&self) -> Option<i64>
pub fn last_modified_date(&self) -> Option<i64>
The timestamp of when the configuration was last modified.
source§impl SecurityConfigDetail
impl SecurityConfigDetail
sourcepub fn builder() -> SecurityConfigDetailBuilder
pub fn builder() -> SecurityConfigDetailBuilder
Creates a new builder-style object to manufacture SecurityConfigDetail
.
Trait Implementations§
source§impl Clone for SecurityConfigDetail
impl Clone for SecurityConfigDetail
source§fn clone(&self) -> SecurityConfigDetail
fn clone(&self) -> SecurityConfigDetail
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 SecurityConfigDetail
impl Debug for SecurityConfigDetail
source§impl PartialEq<SecurityConfigDetail> for SecurityConfigDetail
impl PartialEq<SecurityConfigDetail> for SecurityConfigDetail
source§fn eq(&self, other: &SecurityConfigDetail) -> bool
fn eq(&self, other: &SecurityConfigDetail) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.