pub struct DescribeSecurityConfigurationOutput {
pub creation_date_time: Option<f64>,
pub name: Option<String>,
pub security_configuration: Option<String>,
}
Fields§
§creation_date_time: Option<f64>
The date and time the security configuration was created
name: Option<String>
The name of the security configuration.
security_configuration: Option<String>
The security configuration details in JSON format.
Trait Implementations§
Source§impl Clone for DescribeSecurityConfigurationOutput
impl Clone for DescribeSecurityConfigurationOutput
Source§fn clone(&self) -> DescribeSecurityConfigurationOutput
fn clone(&self) -> DescribeSecurityConfigurationOutput
Returns a duplicate 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 Default for DescribeSecurityConfigurationOutput
impl Default for DescribeSecurityConfigurationOutput
Source§fn default() -> DescribeSecurityConfigurationOutput
fn default() -> DescribeSecurityConfigurationOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeSecurityConfigurationOutput
impl<'de> Deserialize<'de> for DescribeSecurityConfigurationOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeSecurityConfigurationOutput
impl PartialEq for DescribeSecurityConfigurationOutput
Source§fn eq(&self, other: &DescribeSecurityConfigurationOutput) -> bool
fn eq(&self, other: &DescribeSecurityConfigurationOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeSecurityConfigurationOutput
Auto Trait Implementations§
impl Freeze for DescribeSecurityConfigurationOutput
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