Class: Aws::Lambda::Types::StepDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb

Overview

Details about a step operation.

Constant Summary collapse

SENSITIVE =
[:result]

Instance Attribute Summary collapse

Instance Attribute Details

#attemptInteger

The current attempt number for this step.

Returns:

  • (Integer)


8623
8624
8625
8626
8627
8628
8629
8630
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 8623

class StepDetails < Struct.new(
  :attempt,
  :next_attempt_timestamp,
  :result,
  :error)
  SENSITIVE = [:result]
  include Aws::Structure
end

#errorTypes::ErrorObject

Details about the step failure.

Returns:



8623
8624
8625
8626
8627
8628
8629
8630
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 8623

class StepDetails < Struct.new(
  :attempt,
  :next_attempt_timestamp,
  :result,
  :error)
  SENSITIVE = [:result]
  include Aws::Structure
end

#next_attempt_timestampTime

The date and time when the next attempt is scheduled, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD). Only populated when the step is in a pending state.

Returns:

  • (Time)


8623
8624
8625
8626
8627
8628
8629
8630
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 8623

class StepDetails < Struct.new(
  :attempt,
  :next_attempt_timestamp,
  :result,
  :error)
  SENSITIVE = [:result]
  include Aws::Structure
end

#resultString

The JSON response payload from the step operation.

Returns:

  • (String)


8623
8624
8625
8626
8627
8628
8629
8630
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 8623

class StepDetails < Struct.new(
  :attempt,
  :next_attempt_timestamp,
  :result,
  :error)
  SENSITIVE = [:result]
  include Aws::Structure
end