[−][src]Struct rusoto_ssm::StepExecution
Detailed information about an the execution state of an Automation step.
Fields
action: Option<String>
The action this step performs. The action determines the behavior of the step.
execution_end_time: Option<f64>
If a step has finished execution, this contains the time the execution ended. If the step has not yet concluded, this field is not populated.
execution_start_time: Option<f64>
If a step has begun execution, this contains the time the step started. If the step is in Pending status, this field is not populated.
failure_details: Option<FailureDetails>
Information about the Automation failure.
failure_message: Option<String>
If a step failed, this message explains why the execution failed.
inputs: Option<HashMap<String, String>>
Fully-resolved values passed into the step before execution.
is_critical: Option<bool>
The flag which can be used to help decide whether the failure of current step leads to the Automation failure.
is_end: Option<bool>
The flag which can be used to end automation no matter whether the step succeeds or fails.
max_attempts: Option<i64>
The maximum number of tries to run the action of the step. The default value is 1.
next_step: Option<String>
The next step after the step succeeds.
on_failure: Option<String>
The action to take if the step fails. The default value is Abort.
outputs: Option<HashMap<String, Vec<String>>>
Returned values from the execution of the step.
overridden_parameters: Option<HashMap<String, Vec<String>>>
A user-specified list of parameters to override when running a step.
response: Option<String>
A message associated with the response code for an execution.
response_code: Option<String>
The response code returned by the execution of the step.
step_execution_id: Option<String>
The unique ID of a step execution.
step_name: Option<String>
The name of this execution step.
step_status: Option<String>
The execution status for this step. Valid values include: Pending, InProgress, Success, Cancelled, Failed, and TimedOut.
target_location: Option<TargetLocation>
The combination of AWS Regions and accounts targeted by the current Automation execution.
targets: Option<Vec<Target>>
The targets for the step execution.
timeout_seconds: Option<i64>
The timeout seconds of the step.
valid_next_steps: Option<Vec<String>>
Strategies used when step fails, we support Continue and Abort. Abort will fail the automation when the step fails. Continue will ignore the failure of current step and allow automation to run the next step. With conditional branching, we add step:stepName to support the automation to go to another specific step.
Trait Implementations
impl PartialEq<StepExecution> for StepExecution
[src]
fn eq(&self, other: &StepExecution) -> bool
[src]
fn ne(&self, other: &StepExecution) -> bool
[src]
impl Default for StepExecution
[src]
fn default() -> StepExecution
[src]
impl Clone for StepExecution
[src]
fn clone(&self) -> StepExecution
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for StepExecution
[src]
impl<'de> Deserialize<'de> for StepExecution
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for StepExecution
impl Sync for StepExecution
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