[][src]Struct rusoto_ssm::AutomationExecutionMetadata

pub struct AutomationExecutionMetadata {
    pub automation_execution_id: Option<String>,
    pub automation_execution_status: Option<String>,
    pub automation_type: 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_maps: Option<Vec<HashMap<String, Vec<String>>>>,
    pub target_parameter_name: Option<String>,
    pub targets: Option<Vec<Target>>,
}

Details about a specific Automation execution.

Fields

automation_execution_id: Option<String>

The execution ID.

automation_execution_status: Option<String>

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

automation_type: Option<String>

Use this filter with DescribeAutomationExecutions. Specify either Local or CrossAccount. CrossAccount is an Automation that runs in multiple AWS Regions and accounts. For more information, see Executing Automations in Multiple AWS Regions and Accounts in the AWS Systems Manager User Guide.

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 execution.

document_version: Option<String>

The document version used during the execution.

executed_by: Option<String>

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

execution_end_time: Option<f64>

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

execution_start_time: Option<f64>

The time the execution started.>

failure_message: Option<String>

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

log_file: Option<String>

An Amazon S3 bucket where execution information is stored.

max_concurrency: Option<String>

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

max_errors: Option<String>

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

mode: Option<String>

The Automation execution mode.

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

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

parent_automation_execution_id: Option<String>

The ExecutionId of the parent Automation.

resolved_targets: Option<ResolvedTargets>

A list of targets that resolved during the execution.

target: Option<String>

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

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 list of execution outputs as defined in the Automation document.

targets: Option<Vec<Target>>

The targets defined by the user when starting the Automation.

Trait Implementations

impl Clone for AutomationExecutionMetadata[src]

impl Default for AutomationExecutionMetadata[src]

impl PartialEq<AutomationExecutionMetadata> for AutomationExecutionMetadata[src]

impl Debug for AutomationExecutionMetadata[src]

impl StructuralPartialEq for AutomationExecutionMetadata[src]

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