RetryPolicy | R Documentation |
RetryPolicy base class
RetryPolicy base class
sagemaker.workflow::Entity
-> RetryPolicy
backoff_rate
(float): The multiplier by which the retry interval increases during each attempt (default: 2.0)
interval_seconds
(int): An integer that represents the number of seconds before the first retry attempt (default: 1)
max_attempts
(int): A positive integer that represents the maximum number of retry attempts. (default: None)
expire_after_mins
(int): A positive integer that represents the maximum minute to expire any further retry attempt (default: None)
new()
Initialize RetryPolicy class
RetryPolicy$new( backoff_rate = DEFAULT_BACKOFF_RATE, interval_seconds = DEFAULT_INTERVAL_SECONDS, max_attempts = NULL, expire_after_mins = NULL )
backoff_rate
(float): The multiplier by which the retry interval increases during each attempt (default: 2.0)
interval_seconds
(int): An integer that represents the number of seconds before the first retry attempt (default: 1)
max_attempts
(int): A positive integer that represents the maximum number of retry attempts. (default: None)
expire_after_mins
(int): A positive integer that represents the maximum minute to expire any further retry attempt (default: None)
validate_backoff_rate()
Validate the input back off rate type
RetryPolicy$validate_backoff_rate(value)
value
object to be checked
validate_interval_seconds()
Validate the input interval seconds
RetryPolicy$validate_interval_seconds(value)
value
object to be checked
validate_max_attempts()
Validate the input max attempts
RetryPolicy$validate_max_attempts(value)
value
object to be checked
validate_expire_after_mins()
Validate expire after mins
RetryPolicy$validate_expire_after_mins(value)
value
object to be checked
to_request()
Get the request structure for workflow service calls.
RetryPolicy$to_request()
value
object to be checked
format()
format class
RetryPolicy$format()
clone()
The objects of this class are cloneable with this method.
RetryPolicy$clone(deep = FALSE)
deep
Whether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.