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.98.0 (build 00b106d)", date="2024-05-08T21:35:09.595Z") @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.*;
 import software.amazon.awscdk.services.logs.*;
 LogRetentionRetryOptions logRetentionRetryOptions = LogRetentionRetryOptions.builder()
         .base(Duration.minutes(30))
         .maxRetries(123)
         .build();
 
  • Method Details