class AWS::Flow::RetryDefaults

Defaults for {RetryOptions}.

Public Instance Methods

backoff_coefficient() click to toggle source

Sets the backoff coefficient to use for retry attempts.

@see FlowConstants.exponential_retry_backoff_coefficient

# File lib/aws/decider/options.rb, line 228
def backoff_coefficient; FlowConstants.exponential_retry_backoff_coefficient; end
exceptions_to_exclude() click to toggle source

The exceptions that will not initiate a retry attempt. The default is an empty list; no exceptions are excluded.

@see FlowConstants.exponential_retry_exceptions_to_exclude

# File lib/aws/decider/options.rb, line 223
def exceptions_to_exclude; FlowConstants.exponential_retry_exceptions_to_exclude; end
exceptions_to_include() click to toggle source

The exceptions that will initiate a retry attempt. The default is to use all exceptions.

@see FlowConstants.exponential_retry_exceptions_to_include

# File lib/aws/decider/options.rb, line 217
def exceptions_to_include; FlowConstants.exponential_retry_exceptions_to_include; end
initial_retry_interval() click to toggle source

@see FlowConstants.exponential_retry_initial_retry_interval

# File lib/aws/decider/options.rb, line 238
def initial_retry_interval; FlowConstants.exponential_retry_initial_retry_interval; end
jitter_function() click to toggle source

@see FlowConstants.jitter_function

# File lib/aws/decider/options.rb, line 235
def jitter_function; FlowConstants.jitter_function; end
maximum_attempts() click to toggle source

The default maximum number of attempts to make before the task is marked as failed.

@see FlowConstants.exponential_retry_maximum_attempts

# File lib/aws/decider/options.rb, line 206
def maximum_attempts; FlowConstants.exponential_retry_maximum_attempts; end
retry_function() click to toggle source

The default retry function to use.

@see FlowConstants.exponential_retry_function

# File lib/aws/decider/options.rb, line 211
def retry_function; FlowConstants.exponential_retry_function; end
should_jitter() click to toggle source

@desc (see FlowConstants#should_jitter) @return the value of {FlowConstants#should_jitter}

# File lib/aws/decider/options.rb, line 232
def should_jitter; FlowConstants.should_jitter; end