pub struct MitigationActionIdentifier {
pub action_arn: Option<String>,
pub action_name: Option<String>,
pub creation_date: Option<f64>,
}Expand description
Information that identifies a mitigation action. This information is returned by ListMitigationActions.
Fields§
§action_arn: Option<String>The IAM role ARN used to apply this mitigation action.
action_name: Option<String>The friendly name of the mitigation action.
creation_date: Option<f64>The date when this mitigation action was created.
Trait Implementations§
Source§impl Clone for MitigationActionIdentifier
impl Clone for MitigationActionIdentifier
Source§fn clone(&self) -> MitigationActionIdentifier
fn clone(&self) -> MitigationActionIdentifier
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 Debug for MitigationActionIdentifier
impl Debug for MitigationActionIdentifier
Source§impl Default for MitigationActionIdentifier
impl Default for MitigationActionIdentifier
Source§fn default() -> MitigationActionIdentifier
fn default() -> MitigationActionIdentifier
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MitigationActionIdentifier
impl<'de> Deserialize<'de> for MitigationActionIdentifier
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
impl StructuralPartialEq for MitigationActionIdentifier
Auto Trait Implementations§
impl Freeze for MitigationActionIdentifier
impl RefUnwindSafe for MitigationActionIdentifier
impl Send for MitigationActionIdentifier
impl Sync for MitigationActionIdentifier
impl Unpin for MitigationActionIdentifier
impl UnwindSafe for MitigationActionIdentifier
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