interface RedshiftRetryOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.RedshiftRetryOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_RedshiftRetryOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.RedshiftRetryOptionsProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.RedshiftRetryOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » RedshiftRetryOptionsProperty |
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 { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const redshiftRetryOptionsProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.RedshiftRetryOptionsProperty = {
durationInSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| duration | number | The length of time during which Firehose retries delivery after a failure, starting from the initial request and including the first attempt. |
durationInSeconds?
Type:
number
(optional)
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.

.NET
Go
Java
Python
TypeScript