Class: Aws::CloudWatchEvents::Types::RetryPolicy

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

Overview

A RetryPolicy object that includes information about the retry policy settings.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maximum_event_age_in_secondsInteger

The maximum amount of time, in seconds, to continue to make retry attempts.

Returns:

  • (Integer)


3541
3542
3543
3544
3545
3546
# File 'gems/aws-sdk-cloudwatchevents/lib/aws-sdk-cloudwatchevents/types.rb', line 3541

class RetryPolicy < Struct.new(
  :maximum_retry_attempts,
  :maximum_event_age_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end

#maximum_retry_attemptsInteger

The maximum number of retry attempts to make before the request fails. Retry attempts continue until either the maximum number of attempts is made or until the duration of the MaximumEventAgeInSeconds is met.

Returns:

  • (Integer)


3541
3542
3543
3544
3545
3546
# File 'gems/aws-sdk-cloudwatchevents/lib/aws-sdk-cloudwatchevents/types.rb', line 3541

class RetryPolicy < Struct.new(
  :maximum_retry_attempts,
  :maximum_event_age_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end