Interface CfnDeliveryStream.AmazonopensearchserviceRetryOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStream.AmazonopensearchserviceRetryOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStream
@Stability(Stable)
public static interface CfnDeliveryStream.AmazonopensearchserviceRetryOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Configures retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon OpenSearch Service.
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.kinesisfirehose.*; AmazonopensearchserviceRetryOptionsProperty amazonopensearchserviceRetryOptionsProperty = AmazonopensearchserviceRetryOptionsProperty.builder() .durationInSeconds(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnDeliveryStream.AmazonopensearchserviceRetryOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDurationInSeconds
After an initial failure to deliver to Amazon OpenSearch Service, the total amount of time during which Kinesis Data Firehose retries delivery (including the first attempt).After this time has elapsed, the failed documents are written to Amazon S3. Default value is 300 seconds (5 minutes). A value of 0 (zero) results in no retries.
- See Also:
-
builder
@Stability(Stable) static CfnDeliveryStream.AmazonopensearchserviceRetryOptionsProperty.Builder builder()
-