Interface CfnDeliveryStream.RedshiftRetryOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStream.RedshiftRetryOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStream
@Stability(Stable)
public static interface CfnDeliveryStream.RedshiftRetryOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Configures retry behavior in case Firehose is unable to deliver documents to Amazon Redshift.
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.*; RedshiftRetryOptionsProperty redshiftRetryOptionsProperty = RedshiftRetryOptionsProperty.builder() .durationInSeconds(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeliveryStream.RedshiftRetryOptionsProperty
static final class
An implementation forCfnDeliveryStream.RedshiftRetryOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDurationInSeconds
The length of time during which Firehose retries delivery after a failure, starting from the initial request and including the first attempt.The default value is 3600 seconds (60 minutes). Firehose does not retry if the value of
DurationInSeconds
is 0 (zero) or if the first delivery attempt takes longer than the current value.- See Also:
-
builder
-