Struct aws_sdk_config::types::RemediationExecutionStatus
source · #[non_exhaustive]pub struct RemediationExecutionStatus { /* private fields */ }Expand description
Provides details of the current status of the invoked remediation action for that resource.
Implementations§
source§impl RemediationExecutionStatus
impl RemediationExecutionStatus
sourcepub fn resource_key(&self) -> Option<&ResourceKey>
pub fn resource_key(&self) -> Option<&ResourceKey>
The details that identify a resource within Config, including the resource type and resource ID.
sourcepub fn state(&self) -> Option<&RemediationExecutionState>
pub fn state(&self) -> Option<&RemediationExecutionState>
ENUM of the values.
sourcepub fn step_details(&self) -> Option<&[RemediationExecutionStep]>
pub fn step_details(&self) -> Option<&[RemediationExecutionStep]>
Details of every step.
sourcepub fn invocation_time(&self) -> Option<&DateTime>
pub fn invocation_time(&self) -> Option<&DateTime>
Start time when the remediation was executed.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
The time when the remediation execution was last updated.
source§impl RemediationExecutionStatus
impl RemediationExecutionStatus
sourcepub fn builder() -> RemediationExecutionStatusBuilder
pub fn builder() -> RemediationExecutionStatusBuilder
Creates a new builder-style object to manufacture RemediationExecutionStatus.
Trait Implementations§
source§impl Clone for RemediationExecutionStatus
impl Clone for RemediationExecutionStatus
source§fn clone(&self) -> RemediationExecutionStatus
fn clone(&self) -> RemediationExecutionStatus
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 Debug for RemediationExecutionStatus
impl Debug for RemediationExecutionStatus
source§impl PartialEq<RemediationExecutionStatus> for RemediationExecutionStatus
impl PartialEq<RemediationExecutionStatus> for RemediationExecutionStatus
source§fn eq(&self, other: &RemediationExecutionStatus) -> bool
fn eq(&self, other: &RemediationExecutionStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RemediationExecutionStatus
Auto Trait Implementations§
impl RefUnwindSafe for RemediationExecutionStatus
impl Send for RemediationExecutionStatus
impl Sync for RemediationExecutionStatus
impl Unpin for RemediationExecutionStatus
impl UnwindSafe for RemediationExecutionStatus
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