Struct rusoto_ssm::AutomationExecutionMetadata[][src]

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 Default for AutomationExecutionMetadata
[src]

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

impl Debug for AutomationExecutionMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for AutomationExecutionMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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