aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.RedshiftRetryOptionsProperty

interface RedshiftRetryOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.RedshiftRetryOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_RedshiftRetryOptionsProperty
Javasoftware.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.RedshiftRetryOptionsProperty
Pythonaws_cdk.aws_kinesisfirehose.CfnDeliveryStream.RedshiftRetryOptionsProperty
TypeScript aws-cdk-lib » aws_kinesisfirehose » CfnDeliveryStream » RedshiftRetryOptionsProperty

Configures retry behavior in case Kinesis Data 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 { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
const redshiftRetryOptionsProperty: kinesisfirehose.CfnDeliveryStream.RedshiftRetryOptionsProperty = {
  durationInSeconds: 123,
};

Properties

NameTypeDescription
durationInSeconds?numberThe length of time during which Kinesis Data 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 Kinesis Data Firehose retries delivery after a failure, starting from the initial request and including the first attempt.

The default value is 3600 seconds (60 minutes). Kinesis Data Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.