#[non_exhaustive]pub struct SecurityConfigSummary {
pub id: Option<String>,
pub type: Option<SecurityConfigType>,
pub config_version: Option<String>,
pub description: Option<String>,
pub created_date: Option<i64>,
pub last_modified_date: Option<i64>,
}
Expand description
A summary of a security configuration for OpenSearch Serverless.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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.
created_date: Option<i64>
The Epoch time when the security configuration was created.
last_modified_date: Option<i64>
The timestamp of when the configuration was last modified.
Implementations§
source§impl SecurityConfigSummary
impl SecurityConfigSummary
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 created_date(&self) -> Option<i64>
pub fn created_date(&self) -> Option<i64>
The Epoch time when the security 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 SecurityConfigSummary
impl SecurityConfigSummary
sourcepub fn builder() -> SecurityConfigSummaryBuilder
pub fn builder() -> SecurityConfigSummaryBuilder
Creates a new builder-style object to manufacture SecurityConfigSummary
.
Trait Implementations§
source§impl Clone for SecurityConfigSummary
impl Clone for SecurityConfigSummary
source§fn clone(&self) -> SecurityConfigSummary
fn clone(&self) -> SecurityConfigSummary
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 SecurityConfigSummary
impl Debug for SecurityConfigSummary
source§impl PartialEq<SecurityConfigSummary> for SecurityConfigSummary
impl PartialEq<SecurityConfigSummary> for SecurityConfigSummary
source§fn eq(&self, other: &SecurityConfigSummary) -> bool
fn eq(&self, other: &SecurityConfigSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SecurityConfigSummary
Auto Trait Implementations§
impl RefUnwindSafe for SecurityConfigSummary
impl Send for SecurityConfigSummary
impl Sync for SecurityConfigSummary
impl Unpin for SecurityConfigSummary
impl UnwindSafe for SecurityConfigSummary
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
Mutably borrows from an owned value. Read more