Class: Aws::EventBridge::Types::RetryPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::RetryPolicy
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass RetryPolicy data as a hash:
{
maximum_retry_attempts: 1,
maximum_event_age_in_seconds: 1,
}
A RetryPolicy
object that includes information about the retry
policy settings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum_event_age_in_seconds ⇒ Integer
The maximum amount of time, in seconds, to continue to make retry attempts.
-
#maximum_retry_attempts ⇒ Integer
The maximum number of retry attempts to make before the request fails.
Instance Attribute Details
#maximum_event_age_in_seconds ⇒ Integer
The maximum amount of time, in seconds, to continue to make retry attempts.
5041 5042 5043 5044 5045 5046 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 5041 class RetryPolicy < Struct.new( :maximum_retry_attempts, :maximum_event_age_in_seconds) SENSITIVE = [] include Aws::Structure end |
#maximum_retry_attempts ⇒ Integer
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.
5041 5042 5043 5044 5045 5046 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 5041 class RetryPolicy < Struct.new( :maximum_retry_attempts, :maximum_event_age_in_seconds) SENSITIVE = [] include Aws::Structure end |