pub struct ListAuditMitigationActionsExecutionsResponse {
pub actions_executions: Option<Vec<AuditMitigationActionExecutionMetadata>>,
pub next_token: Option<String>,
}Fields§
§actions_executions: Option<Vec<AuditMitigationActionExecutionMetadata>>A set of task execution results based on the input parameters. Details include the mitigation action applied, start time, and task status.
next_token: Option<String>The token for the next set of results.
Trait Implementations§
Source§impl Clone for ListAuditMitigationActionsExecutionsResponse
impl Clone for ListAuditMitigationActionsExecutionsResponse
Source§fn clone(&self) -> ListAuditMitigationActionsExecutionsResponse
fn clone(&self) -> ListAuditMitigationActionsExecutionsResponse
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 ListAuditMitigationActionsExecutionsResponse
impl Default for ListAuditMitigationActionsExecutionsResponse
Source§fn default() -> ListAuditMitigationActionsExecutionsResponse
fn default() -> ListAuditMitigationActionsExecutionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAuditMitigationActionsExecutionsResponse
impl<'de> Deserialize<'de> for ListAuditMitigationActionsExecutionsResponse
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 ListAuditMitigationActionsExecutionsResponse
impl PartialEq for ListAuditMitigationActionsExecutionsResponse
Source§fn eq(&self, other: &ListAuditMitigationActionsExecutionsResponse) -> bool
fn eq(&self, other: &ListAuditMitigationActionsExecutionsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListAuditMitigationActionsExecutionsResponse
Auto Trait Implementations§
impl Freeze for ListAuditMitigationActionsExecutionsResponse
impl RefUnwindSafe for ListAuditMitigationActionsExecutionsResponse
impl Send for ListAuditMitigationActionsExecutionsResponse
impl Sync for ListAuditMitigationActionsExecutionsResponse
impl Unpin for ListAuditMitigationActionsExecutionsResponse
impl UnwindSafe for ListAuditMitigationActionsExecutionsResponse
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