Struct aws_sdk_emr::types::SecurityConfigurationSummary
source · #[non_exhaustive]pub struct SecurityConfigurationSummary {
pub name: Option<String>,
pub creation_date_time: Option<DateTime>,
}
Expand description
The creation date and time, and name, of a security configuration.
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.name: Option<String>
The name of the security configuration.
creation_date_time: Option<DateTime>
The date and time the security configuration was created.
Implementations§
source§impl SecurityConfigurationSummary
impl SecurityConfigurationSummary
sourcepub fn builder() -> SecurityConfigurationSummaryBuilder
pub fn builder() -> SecurityConfigurationSummaryBuilder
Creates a new builder-style object to manufacture SecurityConfigurationSummary
.
Trait Implementations§
source§impl Clone for SecurityConfigurationSummary
impl Clone for SecurityConfigurationSummary
source§fn clone(&self) -> SecurityConfigurationSummary
fn clone(&self) -> SecurityConfigurationSummary
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 SecurityConfigurationSummary
impl Debug for SecurityConfigurationSummary
source§impl PartialEq for SecurityConfigurationSummary
impl PartialEq for SecurityConfigurationSummary
source§fn eq(&self, other: &SecurityConfigurationSummary) -> bool
fn eq(&self, other: &SecurityConfigurationSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SecurityConfigurationSummary
Auto Trait Implementations§
impl RefUnwindSafe for SecurityConfigurationSummary
impl Send for SecurityConfigurationSummary
impl Sync for SecurityConfigurationSummary
impl Unpin for SecurityConfigurationSummary
impl UnwindSafe for SecurityConfigurationSummary
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
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>
Creates a shared type from an unshared type.