Struct rusoto_ssm::AutomationExecution[][src]

pub struct AutomationExecution {
    pub automation_execution_id: Option<String>,
    pub automation_execution_status: Option<String>,
    pub current_action: Option<String>,
    pub current_step_name: Option<String>,
    pub document_name: Option<String>,
    pub document_version: Option<String>,
    pub executed_by: Option<String>,
    pub execution_end_time: Option<f64>,
    pub execution_start_time: Option<f64>,
    pub failure_message: Option<String>,
    pub max_concurrency: Option<String>,
    pub max_errors: Option<String>,
    pub mode: Option<String>,
    pub outputs: Option<HashMap<String, Vec<String>>>,
    pub parameters: Option<HashMap<String, Vec<String>>>,
    pub parent_automation_execution_id: Option<String>,
    pub resolved_targets: Option<ResolvedTargets>,
    pub step_executions: Option<Vec<StepExecution>>,
    pub step_executions_truncated: Option<bool>,
    pub target: Option<String>,
    pub target_parameter_name: Option<String>,
    pub targets: Option<Vec<Target>>,
}

Detailed information about the current state of an individual Automation execution.

Fields

The execution ID.

The execution status of the Automation.

The action of the currently executing step.

The name of the currently executing step.

The name of the Automation document used during the execution.

The version of the document to use during execution.

The Amazon Resource Name (ARN) of the user who executed the automation.

The time the execution finished.

The time the execution started.

A message describing why an execution has failed, if the status is set to Failed.

The MaxConcurrency value specified by the user when the execution started.

The MaxErrors value specified by the user when the execution started.

The automation execution mode.

The list of execution outputs as defined in the automation document.

The key-value map of execution parameters, which were supplied when calling StartAutomationExecution.

The AutomationExecutionId of the parent automation.

A list of resolved targets in the rate control execution.

A list of details about the current state of all steps that comprise an execution. An Automation document contains a list of steps that are executed in order.

A boolean value that indicates if the response contains the full list of the Automation step executions. If true, use the DescribeAutomationStepExecutions API action to get the full list of step executions.

The target of the execution.

The parameter name.

The specified targets.

Trait Implementations

impl Default for AutomationExecution
[src]

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

impl Debug for AutomationExecution
[src]

Formats the value using the given formatter. Read more

impl Clone for AutomationExecution
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AutomationExecution
[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