#[non_exhaustive]pub struct SecurityConfigDetail {
pub id: Option<String>,
pub type: Option<SecurityConfigType>,
pub config_version: Option<String>,
pub description: Option<String>,
pub saml_options: Option<SamlConfigOptions>,
pub created_date: Option<i64>,
pub last_modified_date: Option<i64>,
}
Expand description
Details about a security configuration for OpenSearch Serverless.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
The unique identifier of the security configuration.
type: Option<SecurityConfigType>
The type of security configuration.
config_version: Option<String>
The version of the security configuration.
description: Option<String>
The description of the security configuration.
saml_options: Option<SamlConfigOptions>
SAML options for the security configuration in the form of a key-value map.
created_date: Option<i64>
The date the configuration was created.
last_modified_date: Option<i64>
The timestamp of when the configuration was last modified.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SecurityConfigDetail
impl Debug for SecurityConfigDetail
source§impl PartialEq for SecurityConfigDetail
impl PartialEq for SecurityConfigDetail
source§fn eq(&self, other: &SecurityConfigDetail) -> bool
fn eq(&self, other: &SecurityConfigDetail) -> bool
self
and other
values to be equal, and is used
by ==
.