class
Amazonite::EventBridge::RetryPolicy
- Amazonite::EventBridge::RetryPolicy
- Reference
- Object
Overview
A RetryPolicy object that includes information about the retry policy settings.
Included Modules
- JSON::Serializable
Defined in:
eventbridge/retry_policy.crConstructors
- .new(pull : JSON::PullParser)
- .new(maximum_retry_attempts : Int32 | Nil = nil, maximum_event_age_in_seconds : Int32 | Nil = nil)
- .new(*, __pull_for_json_serializable pull : JSON::PullParser)
Instance Method Summary
-
#==(other : self)
Returns
trueif this reference is the same as other. -
#hash(hasher)
See
Object#hash(hasher) -
#maximum_event_age_in_seconds : Int32 | Nil
The maximum amount of time, in seconds, to continue to make retry attempts.
-
#maximum_event_age_in_seconds=(maximum_event_age_in_seconds : Int32 | Nil)
The maximum amount of time, in seconds, to continue to make retry attempts.
-
#maximum_retry_attempts : Int32 | Nil
The maximum number of retry attempts to make before the request fails.
-
#maximum_retry_attempts=(maximum_retry_attempts : Int32 | Nil)
The maximum number of retry attempts to make before the request fails.
- #validate! : Nil
Constructor Detail
Instance Method Detail
Returns true if this reference is the same as other. Invokes same?.
The maximum amount of time, in seconds, to continue to make retry attempts.
The maximum amount of time, in seconds, to continue to make retry attempts.
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.
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.