[][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 progress_counters: Option<ProgressCounters>,
    pub resolved_targets: Option<ResolvedTargets>,
    pub step_executions: Option<Vec<StepExecution>>,
    pub step_executions_truncated: Option<bool>,
    pub target: Option<String>,
    pub target_locations: Option<Vec<TargetLocation>>,
    pub target_maps: Option<Vec<HashMap<String, Vec<String>>>>,
    pub target_parameter_name: Option<String>,
    pub targets: Option<Vec<Target>>,
}

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

Fields

automation_execution_id: Option<String>

The execution ID.

automation_execution_status: Option<String>

The execution status of the Automation.

current_action: Option<String>

The action of the step that is currently running.

current_step_name: Option<String>

The name of the step that is currently running.

document_name: Option<String>

The name of the Automation document used during the execution.

document_version: Option<String>

The version of the document to use during execution.

executed_by: Option<String>

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

execution_end_time: Option<f64>

The time the execution finished.

execution_start_time: Option<f64>

The time the execution started.

failure_message: Option<String>

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

max_concurrency: Option<String>

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

max_errors: Option<String>

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

mode: Option<String>

The automation execution mode.

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

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

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

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

parent_automation_execution_id: Option<String>

The AutomationExecutionId of the parent automation.

progress_counters: Option<ProgressCounters>

An aggregate of step execution statuses displayed in the AWS Console for a multi-Region and multi-account Automation execution.

resolved_targets: Option<ResolvedTargets>

A list of resolved targets in the rate control execution.

step_executions: Option<Vec<StepExecution>>

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 run in order.

step_executions_truncated: Option<bool>

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.

target: Option<String>

The target of the execution.

target_locations: Option<Vec<TargetLocation>>

The combination of AWS Regions and/or AWS accounts where you want to run the Automation.

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

The specified key-value mapping of document parameters to target resources.

target_parameter_name: Option<String>

The parameter name.

targets: Option<Vec<Target>>

The specified targets.

Trait Implementations

impl Clone for AutomationExecution[src]

impl Default for AutomationExecution[src]

impl PartialEq<AutomationExecution> for AutomationExecution[src]

impl Debug for AutomationExecution[src]

impl StructuralPartialEq for AutomationExecution[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

impl<T> BorrowMut<T> 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<T> for T

type Output = T

Should always be Self