[][src]Struct rusoto_ssm::AutomationExecution

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 Clone for AutomationExecution
[src]

Performs copy-assignment from source. Read more

impl Default for AutomationExecution
[src]

impl PartialEq<AutomationExecution> for AutomationExecution
[src]

impl Debug for AutomationExecution
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T