[][src]Struct rusoto_ssm::AutomationExecutionMetadata

pub struct AutomationExecutionMetadata {
    pub association_id: Option<String>,
    pub automation_execution_id: Option<String>,
    pub automation_execution_status: Option<String>,
    pub automation_subtype: Option<String>,
    pub automation_type: Option<String>,
    pub change_request_name: 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 ops_item_id: Option<String>,
    pub outputs: Option<HashMap<String, Vec<String>>>,
    pub parent_automation_execution_id: Option<String>,
    pub resolved_targets: Option<ResolvedTargets>,
    pub runbooks: Option<Vec<Runbook>>,
    pub scheduled_time: Option<f64>,
    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

association_id: Option<String>

The ID of a State Manager association used in the Automation operation.

automation_execution_id: Option<String>

The execution ID.

automation_execution_status: Option<String>

The status of the execution.

automation_subtype: Option<String>

The subtype of the Automation operation. Currently, the only supported value is ChangeRequest.

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 Running Automation workflows in multiple AWS Regions and accounts in the AWS Systems Manager User Guide.

change_request_name: Option<String>

The name of the Change Manager change request.

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

ops_item_id: Option<String>

The ID of an OpsItem that is created to represent a Change Manager change request.

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.

runbooks: Option<Vec<Runbook>>

Information about the Automation runbooks (Automation documents) that are run during a runbook workflow in Change Manager.

The Automation runbooks specified for the runbook workflow can't run until all required approvals for the change request have been received.

scheduled_time: Option<f64>

The date and time the Automation operation is scheduled to start.

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

impl Default for AutomationExecutionMetadata[src]

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

impl PartialEq<AutomationExecutionMetadata> for AutomationExecutionMetadata[src]

impl StructuralPartialEq for AutomationExecutionMetadata[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.