Method: Aws::SSM::Types::StepExecution#execution_end_time

Defined in:
lib/aws-sdk-ssm/types.rb

#execution_end_timeTime

If a step has finished execution, this contains the time the execution ended. If the step hasn’t yet concluded, this field isn’t populated.

Returns:

  • (Time)


18960
18961
18962
18963
18964
18965
18966
18967
18968
18969
18970
18971
18972
18973
18974
18975
18976
18977
18978
18979
18980
18981
18982
18983
18984
18985
18986
18987
# File 'lib/aws-sdk-ssm/types.rb', line 18960

class StepExecution < Struct.new(
  :step_name,
  :action,
  :timeout_seconds,
  :on_failure,
  :max_attempts,
  :execution_start_time,
  :execution_end_time,
  :step_status,
  :response_code,
  :inputs,
  :outputs,
  :response,
  :failure_message,
  :failure_details,
  :step_execution_id,
  :overridden_parameters,
  :is_end,
  :next_step,
  :is_critical,
  :valid_next_steps,
  :targets,
  :target_location,
  :triggered_alarms,
  :parent_step_details)
  SENSITIVE = []
  include Aws::Structure
end