Struct aws_sdk_config::model::RemediationExecutionStep
source · [−]#[non_exhaustive]pub struct RemediationExecutionStep {
pub name: Option<String>,
pub state: Option<RemediationExecutionStepState>,
pub error_message: Option<String>,
pub start_time: Option<DateTime>,
pub stop_time: Option<DateTime>,
}Expand description
Name of the step from the SSM document.
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.name: Option<String>The details of the step.
state: Option<RemediationExecutionStepState>The valid status of the step.
error_message: Option<String>An error message if the step was interrupted during execution.
start_time: Option<DateTime>The time when the step started.
stop_time: Option<DateTime>The time when the step stopped.
Implementations
The valid status of the step.
An error message if the step was interrupted during execution.
The time when the step started.
Creates a new builder-style object to manufacture RemediationExecutionStep
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 RemediationExecutionStep
impl Send for RemediationExecutionStep
impl Sync for RemediationExecutionStep
impl Unpin for RemediationExecutionStep
impl UnwindSafe for RemediationExecutionStep
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