Class: Aws::Lambda::Types::RetryDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#current_attemptInteger

The current attempt number for this operation.

Returns:

  • (Integer)


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_secondsInteger

The delay before the next retry attempt, in seconds.

Returns:

  • (Integer)


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