[−][src]Struct rusoto_ssm::AutomationExecution
Detailed information about the current state of an individual Automation execution.
Fields
automation_execution_id: Option<String>
The execution ID.
automation_execution_status: Option<String>
The execution status of the Automation.
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 the execution.
document_version: Option<String>
The version of the document to use during execution.
executed_by: Option<String>
The Amazon Resource Name (ARN) of the user who ran the automation.
execution_end_time: Option<f64>
The time the execution finished.
execution_start_time: Option<f64>
The time the execution started.
failure_message: Option<String>
A message describing why an execution has failed, if the status is set to Failed.
max_concurrency: Option<String>
The MaxConcurrency value specified by the user when the execution started.
max_errors: Option<String>
The MaxErrors value specified by the user when the execution started.
mode: Option<String>
The automation execution mode.
outputs: Option<HashMap<String, Vec<String>>>
The list of execution outputs as defined in the automation document.
parameters: Option<HashMap<String, Vec<String>>>
The key-value map of execution parameters, which were supplied when calling StartAutomationExecution.
parent_automation_execution_id: Option<String>
The AutomationExecutionId of the parent automation.
progress_counters: Option<ProgressCounters>
An aggregate of step execution statuses displayed in the AWS Console for a multi-Region and multi-account Automation execution.
resolved_targets: Option<ResolvedTargets>
A list of resolved targets in the rate control execution.
step_executions: Option<Vec<StepExecution>>
A list of details about the current state of all steps that comprise an execution. An Automation document contains a list of steps that are run in order.
step_executions_truncated: Option<bool>
A boolean value that indicates if the response contains the full list of the Automation step executions. If true, use the DescribeAutomationStepExecutions API action to get the full list of step executions.
target: Option<String>
The target of the execution.
target_locations: Option<Vec<TargetLocation>>
The combination of AWS Regions and/or AWS accounts where you want to run the Automation.
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 parameter name.
targets: Option<Vec<Target>>
The specified targets.
Trait Implementations
impl PartialEq<AutomationExecution> for AutomationExecution
[src]
fn eq(&self, other: &AutomationExecution) -> bool
[src]
fn ne(&self, other: &AutomationExecution) -> bool
[src]
impl Default for AutomationExecution
[src]
fn default() -> AutomationExecution
[src]
impl Clone for AutomationExecution
[src]
fn clone(&self) -> AutomationExecution
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for AutomationExecution
[src]
impl<'de> Deserialize<'de> for AutomationExecution
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for AutomationExecution
impl Sync for AutomationExecution
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self