@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:34.465Z") @Stability(value=Experimental) public interface LogRetentionRetryOptions extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.core.*;
import software.amazon.awscdk.services.logs.*;
Duration duration;
LogRetentionRetryOptions logRetentionRetryOptions = LogRetentionRetryOptions.builder()
.base(duration)
.maxRetries(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
LogRetentionRetryOptions.Builder
A builder for
LogRetentionRetryOptions |
static class |
LogRetentionRetryOptions.Jsii$Proxy
An implementation for
LogRetentionRetryOptions |
| Modifier and Type | Method and Description |
|---|---|
static LogRetentionRetryOptions.Builder |
builder() |
default Duration |
getBase()
(experimental) The base duration to use in the exponential backoff for operation retries.
|
default Number |
getMaxRetries()
(experimental) The maximum amount of retries.
|
@Stability(value=Experimental) @Nullable default Duration getBase()
Default: Duration.millis(100) (AWS SDK default)
@Stability(value=Experimental) @Nullable default Number getMaxRetries()
Default: 3 (AWS SDK default)
@Stability(value=Experimental) static LogRetentionRetryOptions.Builder builder()
LogRetentionRetryOptions.Builder of LogRetentionRetryOptionsCopyright © 2022. All rights reserved.