Struct rusoto_ssm::StepExecution[][src]

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 max_attempts: Option<i64>,
    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 timeout_seconds: Option<i64>,
}

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

Fields

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

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.

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.

Information about the Automation failure.

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

Fully-resolved values passed into the step before execution.

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

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

Returned values from the execution of the step.

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

A message associated with the response code for an execution.

The response code returned by the execution of the step.

The unique ID of a step execution.

The name of this execution step.

The execution status for this step. Valid values include: Pending, InProgress, Success, Cancelled, Failed, and TimedOut.

The timeout seconds of the step.

Trait Implementations

impl Default for StepExecution
[src]

Returns the "default value" for a type. Read more

impl Debug for StepExecution
[src]

Formats the value using the given formatter. Read more

impl Clone for StepExecution
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StepExecution
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations