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)


8566
8567
8568
8569
8570
8571
8572
8573
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 8566

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

#errorTypes::ErrorObject

Details about the step failure.

Returns:



8566
8567
8568
8569
8570
8571
8572
8573
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 8566

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)


8566
8567
8568
8569
8570
8571
8572
8573
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 8566

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)


8566
8567
8568
8569
8570
8571
8572
8573
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 8566

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