Struct aws_sdk_ssm::model::AutomationExecutionMetadata
source · [−]#[non_exhaustive]pub struct AutomationExecutionMetadata {Show 28 fields
pub automation_execution_id: Option<String>,
pub document_name: Option<String>,
pub document_version: Option<String>,
pub automation_execution_status: Option<AutomationExecutionStatus>,
pub execution_start_time: Option<DateTime>,
pub execution_end_time: Option<DateTime>,
pub executed_by: Option<String>,
pub log_file: Option<String>,
pub outputs: Option<HashMap<String, Vec<String>>>,
pub mode: Option<ExecutionMode>,
pub parent_automation_execution_id: Option<String>,
pub current_step_name: Option<String>,
pub current_action: Option<String>,
pub failure_message: Option<String>,
pub target_parameter_name: Option<String>,
pub targets: Option<Vec<Target>>,
pub target_maps: Option<Vec<HashMap<String, Vec<String>>>>,
pub resolved_targets: Option<ResolvedTargets>,
pub max_concurrency: Option<String>,
pub max_errors: Option<String>,
pub target: Option<String>,
pub automation_type: Option<AutomationType>,
pub automation_subtype: Option<AutomationSubtype>,
pub scheduled_time: Option<DateTime>,
pub runbooks: Option<Vec<Runbook>>,
pub ops_item_id: Option<String>,
pub association_id: Option<String>,
pub change_request_name: Option<String>,
}
Expand description
Details about a specific Automation execution.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.automation_execution_id: Option<String>
The execution ID.
document_name: Option<String>
The name of the Automation runbook used during execution.
document_version: Option<String>
The document version used during the execution.
automation_execution_status: Option<AutomationExecutionStatus>
The status of the execution.
execution_start_time: Option<DateTime>
The time the execution started.
execution_end_time: Option<DateTime>
The time the execution finished. This isn't populated if the execution is still in progress.
executed_by: Option<String>
The IAM role ARN of the user who ran the automation.
log_file: Option<String>
An S3 bucket where execution information is stored.
outputs: Option<HashMap<String, Vec<String>>>
The list of execution outputs as defined in the Automation runbook.
mode: Option<ExecutionMode>
The Automation execution mode.
parent_automation_execution_id: Option<String>
The execution ID of the parent automation.
current_step_name: Option<String>
The name of the step that is currently running.
current_action: Option<String>
The action of the step that is currently running.
failure_message: Option<String>
The list of execution outputs as defined in the Automation runbook.
target_parameter_name: Option<String>
The list of execution outputs as defined in the Automation runbook.
targets: Option<Vec<Target>>
The targets defined by the user when starting the automation.
target_maps: Option<Vec<HashMap<String, Vec<String>>>>
The specified key-value mapping of document parameters to target resources.
resolved_targets: Option<ResolvedTargets>
A list of targets that resolved during the execution.
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.
target: Option<String>
The list of execution outputs as defined in the Automation runbook.
automation_type: Option<AutomationType>
Use this filter with DescribeAutomationExecutions
. Specify either Local or CrossAccount. CrossAccount is an Automation that runs in multiple Amazon Web Services Regions and Amazon Web Services accounts. For more information, see Running Automation workflows in multiple Amazon Web Services Regions and accounts in the Amazon Web Services Systems Manager User Guide.
automation_subtype: Option<AutomationSubtype>
The subtype of the Automation operation. Currently, the only supported value is ChangeRequest
.
scheduled_time: Option<DateTime>
The date and time the Automation operation is scheduled to start.
runbooks: Option<Vec<Runbook>>
Information about the Automation runbooks 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.
ops_item_id: Option<String>
The ID of an OpsItem that is created to represent a Change Manager change request.
association_id: Option<String>
The ID of a State Manager association used in the Automation operation.
change_request_name: Option<String>
The name of the Change Manager change request.
Implementations
The execution ID.
The name of the Automation runbook used during execution.
The document version used during the execution.
The status of the execution.
The time the execution started.
The time the execution finished. This isn't populated if the execution is still in progress.
The IAM role ARN of the user who ran the automation.
The list of execution outputs as defined in the Automation runbook.
The Automation execution mode.
The execution ID of the parent automation.
The name of the step that is currently running.
The action of the step that is currently running.
The list of execution outputs as defined in the Automation runbook.
The list of execution outputs as defined in the Automation runbook.
The targets defined by the user when starting the automation.
The specified key-value mapping of document parameters to target resources.
A list of targets that resolved during the execution.
The MaxConcurrency
value specified by the user when starting the automation.
The MaxErrors
value specified by the user when starting the automation.
The list of execution outputs as defined in the Automation runbook.
Use this filter with DescribeAutomationExecutions
. Specify either Local or CrossAccount. CrossAccount is an Automation that runs in multiple Amazon Web Services Regions and Amazon Web Services accounts. For more information, see Running Automation workflows in multiple Amazon Web Services Regions and accounts in the Amazon Web Services Systems Manager User Guide.
The subtype of the Automation operation. Currently, the only supported value is ChangeRequest
.
The date and time the Automation operation is scheduled to start.
Information about the Automation runbooks 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.
The ID of an OpsItem that is created to represent a Change Manager change request.
The ID of a State Manager association used in the Automation operation.
The name of the Change Manager change request.
Creates a new builder-style object to manufacture AutomationExecutionMetadata
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AutomationExecutionMetadata
impl Send for AutomationExecutionMetadata
impl Sync for AutomationExecutionMetadata
impl Unpin for AutomationExecutionMetadata
impl UnwindSafe for AutomationExecutionMetadata
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more