#[non_exhaustive]pub struct AuditMitigationActionsTaskMetadata {
pub task_id: Option<String>,
pub start_time: Option<DateTime>,
pub task_status: Option<AuditMitigationActionsTaskStatus>,
}
Expand description
Information about an audit mitigation actions task that is returned by ListAuditMitigationActionsTasks
.
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.task_id: Option<String>
The unique identifier for the task.
start_time: Option<DateTime>
The time at which the audit mitigation actions task was started.
task_status: Option<AuditMitigationActionsTaskStatus>
The current state of the audit mitigation actions task.
Implementations§
source§impl AuditMitigationActionsTaskMetadata
impl AuditMitigationActionsTaskMetadata
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time at which the audit mitigation actions task was started.
sourcepub fn task_status(&self) -> Option<&AuditMitigationActionsTaskStatus>
pub fn task_status(&self) -> Option<&AuditMitigationActionsTaskStatus>
The current state of the audit mitigation actions task.
source§impl AuditMitigationActionsTaskMetadata
impl AuditMitigationActionsTaskMetadata
sourcepub fn builder() -> AuditMitigationActionsTaskMetadataBuilder
pub fn builder() -> AuditMitigationActionsTaskMetadataBuilder
Creates a new builder-style object to manufacture AuditMitigationActionsTaskMetadata
.
Trait Implementations§
source§impl Clone for AuditMitigationActionsTaskMetadata
impl Clone for AuditMitigationActionsTaskMetadata
source§fn clone(&self) -> AuditMitigationActionsTaskMetadata
fn clone(&self) -> AuditMitigationActionsTaskMetadata
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 AuditMitigationActionsTaskMetadata
impl PartialEq for AuditMitigationActionsTaskMetadata
source§fn eq(&self, other: &AuditMitigationActionsTaskMetadata) -> bool
fn eq(&self, other: &AuditMitigationActionsTaskMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AuditMitigationActionsTaskMetadata
Auto Trait Implementations§
impl Freeze for AuditMitigationActionsTaskMetadata
impl RefUnwindSafe for AuditMitigationActionsTaskMetadata
impl Send for AuditMitigationActionsTaskMetadata
impl Sync for AuditMitigationActionsTaskMetadata
impl Unpin for AuditMitigationActionsTaskMetadata
impl UnwindSafe for AuditMitigationActionsTaskMetadata
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.