pub struct DescribeMitigationActionResponse {
pub action_arn: Option<String>,
pub action_id: Option<String>,
pub action_name: Option<String>,
pub action_params: Option<MitigationActionParams>,
pub action_type: Option<String>,
pub creation_date: Option<f64>,
pub last_modified_date: Option<f64>,
pub role_arn: Option<String>,
}Fields§
§action_arn: Option<String>The ARN that identifies this migration action.
action_id: Option<String>A unique identifier for this action.
action_name: Option<String>The friendly name that uniquely identifies the mitigation action.
action_params: Option<MitigationActionParams>Parameters that control how the mitigation action is applied, specific to the type of mitigation action.
action_type: Option<String>The type of mitigation action.
creation_date: Option<f64>The date and time when the mitigation action was added to your AWS account.
last_modified_date: Option<f64>The date and time when the mitigation action was last changed.
role_arn: Option<String>The ARN of the IAM role used to apply this action.
Trait Implementations§
Source§impl Clone for DescribeMitigationActionResponse
impl Clone for DescribeMitigationActionResponse
Source§fn clone(&self) -> DescribeMitigationActionResponse
fn clone(&self) -> DescribeMitigationActionResponse
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 DescribeMitigationActionResponse
impl Default for DescribeMitigationActionResponse
Source§fn default() -> DescribeMitigationActionResponse
fn default() -> DescribeMitigationActionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeMitigationActionResponse
impl<'de> Deserialize<'de> for DescribeMitigationActionResponse
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 DescribeMitigationActionResponse
impl PartialEq for DescribeMitigationActionResponse
Source§fn eq(&self, other: &DescribeMitigationActionResponse) -> bool
fn eq(&self, other: &DescribeMitigationActionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeMitigationActionResponse
Auto Trait Implementations§
impl Freeze for DescribeMitigationActionResponse
impl RefUnwindSafe for DescribeMitigationActionResponse
impl Send for DescribeMitigationActionResponse
impl Sync for DescribeMitigationActionResponse
impl Unpin for DescribeMitigationActionResponse
impl UnwindSafe for DescribeMitigationActionResponse
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