[][src]Struct rusoto_ssm::AutomationExecutionMetadata

pub struct AutomationExecutionMetadata {
    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 log_file: Option<String>,
    pub max_concurrency: Option<String>,
    pub max_errors: Option<String>,
    pub mode: Option<String>,
    pub outputs: Option<HashMap<String, Vec<String>>>,
    pub parent_automation_execution_id: Option<String>,
    pub resolved_targets: Option<ResolvedTargets>,
    pub target: Option<String>,
    pub target_parameter_name: Option<String>,
    pub targets: Option<Vec<Target>>,
}

Details about a specific Automation execution.

Fields

The execution ID.

The status of the execution. Valid values include: Running, Succeeded, Failed, Timed out, or Cancelled.

The action of the currently executing step.

The name of the currently executing step.

The name of the Automation document used during execution.

The document version used during the execution.

The IAM role ARN of the user who executed the Automation.

The time the execution finished. This is not populated if the execution is still in progress.

The time the execution started.>

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

An Amazon S3 bucket where execution information is stored.

The MaxConcurrency value specified by the user when starting the Automation.

The MaxErrors value specified by the user when starting the Automation.

The Automation execution mode.

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

The ExecutionId of the parent Automation.

A list of targets that resolved during the execution.

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

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

The targets defined by the user when starting the Automation.

Trait Implementations

impl Clone for AutomationExecutionMetadata
[src]

Performs copy-assignment from source. Read more

impl Default for AutomationExecutionMetadata
[src]

impl PartialEq<AutomationExecutionMetadata> for AutomationExecutionMetadata
[src]

impl Debug for AutomationExecutionMetadata
[src]

impl<'de> Deserialize<'de> for AutomationExecutionMetadata
[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