StepRetryPolicy | R Documentation |
RetryPolicy for a retryable step. The pipeline service will retry
sagemaker.workflow::Entity
-> sagemaker.workflow::RetryPolicy
-> StepRetryPolicy
exception_types
(List[StepExceptionTypeEnum]): the exception types to match for this policy
new()
Initialize StepRetryPolicy class
StepRetryPolicy$new( exception_types, backoff_rate = 2, interval_seconds = 1, max_attempts = NULL, expire_after_mins = NULL )
exception_types
(List[StepExceptionTypeEnum]): the exception types to match for this policy
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)
to_request()
Gets the request structure for retry policy.
StepRetryPolicy$to_request()
clone()
The objects of this class are cloneable with this method.
StepRetryPolicy$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.