Interface LogRetentionRetryOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
LogRetentionRetryOptions
- All Known Implementing Classes:
LogRetentionRetryOptions.Jsii$Proxy,LogRetentionRetryOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:38.108Z")
@Stability(Stable)
public interface LogRetentionRetryOptions
extends software.amazon.jsii.JsiiSerializable
Retry options for all AWS API calls.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.logs.*;
import software.amazon.awscdk.core.*;
LogRetentionRetryOptions logRetentionRetryOptions = LogRetentionRetryOptions.builder()
.base(Duration.minutes(30))
.maxRetries(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLogRetentionRetryOptionsstatic final classAn implementation forLogRetentionRetryOptions -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBase
The base duration to use in the exponential backoff for operation retries.Default: Duration.millis(100) (AWS SDK default)
-
getMaxRetries
The maximum amount of retries.Default: 3 (AWS SDK default)
-
builder
- Returns:
- a
LogRetentionRetryOptions.BuilderofLogRetentionRetryOptions
-