Class: Aws::Lambda::Types::RetryDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::RetryDetails
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Information about retry attempts for an operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#current_attempt ⇒ Integer
The current attempt number for this operation.
-
#next_attempt_delay_seconds ⇒ Integer
The delay before the next retry attempt, in seconds.
Instance Attribute Details
#current_attempt ⇒ Integer
The current attempt number for this operation.
8164 8165 8166 8167 8168 8169 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 8164 class RetryDetails < Struct.new( :current_attempt, :next_attempt_delay_seconds) SENSITIVE = [] include Aws::Structure end |
#next_attempt_delay_seconds ⇒ Integer
The delay before the next retry attempt, in seconds.
8164 8165 8166 8167 8168 8169 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 8164 class RetryDetails < Struct.new( :current_attempt, :next_attempt_delay_seconds) SENSITIVE = [] include Aws::Structure end |