Struct aws_sdk_config::model::RemediationExecutionStatus
source · [−]#[non_exhaustive]pub struct RemediationExecutionStatus {
pub resource_key: Option<ResourceKey>,
pub state: Option<RemediationExecutionState>,
pub step_details: Option<Vec<RemediationExecutionStep>>,
pub invocation_time: Option<DateTime>,
pub last_updated_time: Option<DateTime>,
}Expand description
Provides details of the current status of the invoked remediation action for that resource.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.resource_key: Option<ResourceKey>The details that identify a resource within Config, including the resource type and resource ID.
state: Option<RemediationExecutionState>ENUM of the values.
step_details: Option<Vec<RemediationExecutionStep>>Details of every step.
invocation_time: Option<DateTime>Start time when the remediation was executed.
last_updated_time: Option<DateTime>The time when the remediation execution was last updated.
Implementations
The details that identify a resource within Config, including the resource type and resource ID.
ENUM of the values.
Details of every step.
Start time when the remediation was executed.
The time when the remediation execution was last updated.
Creates a new builder-style object to manufacture RemediationExecutionStatus
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more