Class: Aws::Lambda::Types::StepDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::StepDetails
- 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
-
#attempt ⇒ Integer
The current attempt number for this step.
-
#error ⇒ Types::ErrorObject
Details about the step failure.
-
#next_attempt_timestamp ⇒ Time
The date and time when the next attempt is scheduled, in [ISO-8601 format][1] (YYYY-MM-DDThh:mm:ss.sTZD).
-
#result ⇒ String
The JSON response payload from the step operation.
Instance Attribute Details
#attempt ⇒ Integer
The current attempt number for this step.
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 |
#error ⇒ Types::ErrorObject
Details about the step failure.
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_timestamp ⇒ Time
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.
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 |
#result ⇒ String
The JSON response payload from the step operation.
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 |