#[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 ==
.impl StructuralPartialEq for SecurityConfigDetail
Auto Trait Implementations§
impl Freeze for SecurityConfigDetail
impl RefUnwindSafe for SecurityConfigDetail
impl Send for SecurityConfigDetail
impl Sync for SecurityConfigDetail
impl Unpin for SecurityConfigDetail
impl UnwindSafe for SecurityConfigDetail
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> 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