You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param fetchOptions - Custom setting for the request.
68
-
* @param fetchOptions.timeout - Set timeout for the request.
69
-
* @param fetchOptions.retryLimit - The number of retries before failure. Default is 5
70
-
* @param fetchOptions.retryDelay - The number of ms to use for operation retries. Default is 300ms
71
-
* @param fetchOptions.retryCondition - A function to determine if the error can be retried. Default retry is on status codes 408, 429.
72
-
* @param fetchOptions.retryDelayOptions.base - The base number of milliseconds to use in the exponential backoff for operation retries.
73
-
* @param fetchOptions.retryDelayOptions.customBackoff - A custom function that accepts a retry count and error and returns the amount of time to delay in milliseconds.
* @param {String} stack.region - DB region for Stack.
68
+
* @param {Object} stack.fetchOptions - Custom setting for the request.
69
+
* @param {number} stack.fetchOptions.timeout - Set timeout for the request.
70
+
* @param {number} stack.fetchOptions.retryLimit - The number of retries before failure. Default is 5
71
+
* @param {number} stack.fetchOptions.retryDelay - The number of ms to use for operation retries. Default is 300ms
72
+
* @param {function} stack.fetchOptions.retryCondition - A function to determine if the error can be retried. Default retry is on status codes 408, 429.
73
+
* @param {function} stack.fetchOptions.retryDelayOptions.base - The base number of milliseconds to use in the exponential backoff for operation retries.
74
+
* @param {function} stack.fetchOptions.retryDelayOptions.customBackoff - A custom function that accepts a retry count and error and returns the amount of time to delay in milliseconds.
0 commit comments