[][src]Struct rusoto_ssm::StepExecution

pub struct StepExecution {
    pub action: Option<String>,
    pub execution_end_time: Option<f64>,
    pub execution_start_time: Option<f64>,
    pub failure_details: Option<FailureDetails>,
    pub failure_message: Option<String>,
    pub inputs: Option<HashMap<String, String>>,
    pub is_critical: Option<bool>,
    pub is_end: Option<bool>,
    pub max_attempts: Option<i64>,
    pub next_step: Option<String>,
    pub on_failure: Option<String>,
    pub outputs: Option<HashMap<String, Vec<String>>>,
    pub overridden_parameters: Option<HashMap<String, Vec<String>>>,
    pub response: Option<String>,
    pub response_code: Option<String>,
    pub step_execution_id: Option<String>,
    pub step_name: Option<String>,
    pub step_status: Option<String>,
    pub target_location: Option<TargetLocation>,
    pub targets: Option<Vec<Target>>,
    pub timeout_seconds: Option<i64>,
    pub valid_next_steps: Option<Vec<String>>,
}

Detailed information about an the execution state of an Automation step.

Fields

action: Option<String>

The action this step performs. The action determines the behavior of the step.

execution_end_time: Option<f64>

If a step has finished execution, this contains the time the execution ended. If the step has not yet concluded, this field is not populated.

execution_start_time: Option<f64>

If a step has begun execution, this contains the time the step started. If the step is in Pending status, this field is not populated.

failure_details: Option<FailureDetails>

Information about the Automation failure.

failure_message: Option<String>

If a step failed, this message explains why the execution failed.

inputs: Option<HashMap<String, String>>

Fully-resolved values passed into the step before execution.

is_critical: Option<bool>

The flag which can be used to help decide whether the failure of current step leads to the Automation failure.

is_end: Option<bool>

The flag which can be used to end automation no matter whether the step succeeds or fails.

max_attempts: Option<i64>

The maximum number of tries to run the action of the step. The default value is 1.

next_step: Option<String>

The next step after the step succeeds.

on_failure: Option<String>

The action to take if the step fails. The default value is Abort.

outputs: Option<HashMap<String, Vec<String>>>

Returned values from the execution of the step.

overridden_parameters: Option<HashMap<String, Vec<String>>>

A user-specified list of parameters to override when running a step.

response: Option<String>

A message associated with the response code for an execution.

response_code: Option<String>

The response code returned by the execution of the step.

step_execution_id: Option<String>

The unique ID of a step execution.

step_name: Option<String>

The name of this execution step.

step_status: Option<String>

The execution status for this step.

target_location: Option<TargetLocation>

The combination of AWS Regions and accounts targeted by the current Automation execution.

targets: Option<Vec<Target>>

The targets for the step execution.

timeout_seconds: Option<i64>

The timeout seconds of the step.

valid_next_steps: Option<Vec<String>>

Strategies used when step fails, we support Continue and Abort. Abort will fail the automation when the step fails. Continue will ignore the failure of current step and allow automation to run the next step. With conditional branching, we add step:stepName to support the automation to go to another specific step.

Trait Implementations

impl Clone for StepExecution[src]

impl Debug for StepExecution[src]

impl Default for StepExecution[src]

impl<'de> Deserialize<'de> for StepExecution[src]

impl PartialEq<StepExecution> for StepExecution[src]

impl StructuralPartialEq for StepExecution[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.