Struct aws_sdk_emr::operation::describe_security_configuration::DescribeSecurityConfigurationOutput
source · #[non_exhaustive]pub struct DescribeSecurityConfigurationOutput {
pub name: Option<String>,
pub security_configuration: Option<String>,
pub creation_date_time: Option<DateTime>,
/* private fields */
}
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.
security_configuration: Option<String>
The security configuration details in JSON format.
creation_date_time: Option<DateTime>
The date and time the security configuration was created
Implementations§
source§impl DescribeSecurityConfigurationOutput
impl DescribeSecurityConfigurationOutput
sourcepub fn security_configuration(&self) -> Option<&str>
pub fn security_configuration(&self) -> Option<&str>
The security configuration details in JSON format.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The date and time the security configuration was created
source§impl DescribeSecurityConfigurationOutput
impl DescribeSecurityConfigurationOutput
sourcepub fn builder() -> DescribeSecurityConfigurationOutputBuilder
pub fn builder() -> DescribeSecurityConfigurationOutputBuilder
Creates a new builder-style object to manufacture DescribeSecurityConfigurationOutput
.
Trait Implementations§
source§impl Clone for DescribeSecurityConfigurationOutput
impl Clone for DescribeSecurityConfigurationOutput
source§fn clone(&self) -> DescribeSecurityConfigurationOutput
fn clone(&self) -> DescribeSecurityConfigurationOutput
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 PartialEq for DescribeSecurityConfigurationOutput
impl PartialEq for DescribeSecurityConfigurationOutput
source§fn eq(&self, other: &DescribeSecurityConfigurationOutput) -> bool
fn eq(&self, other: &DescribeSecurityConfigurationOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeSecurityConfigurationOutput
impl RequestId for DescribeSecurityConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeSecurityConfigurationOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeSecurityConfigurationOutput
impl Send for DescribeSecurityConfigurationOutput
impl Sync for DescribeSecurityConfigurationOutput
impl Unpin for DescribeSecurityConfigurationOutput
impl UnwindSafe for DescribeSecurityConfigurationOutput
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.