Method: Aws::SSM::Types::StepExecution#next_step
- Defined in:
- lib/aws-sdk-ssm/types.rb
#next_step ⇒ String
The next step after the step succeeds.
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 |