interface HttpRetryOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.HttpRetryOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#HttpRetryOptions |
Java | software.amazon.awscdk.services.kinesisfirehose.HttpRetryOptions |
Python | aws_cdk.aws_kinesisfirehose.HttpRetryOptions |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » HttpRetryOptions |
Describes the retry behavior in case Kinesis Data Firehose is unable to deliver data to the specified Http endpoint destination, or if it doesn't receive a valid acknowledgment of receipt from the specified Http endpoint destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
const httpRetryOptions: kinesisfirehose.HttpRetryOptions = {
duration: cdk.Duration.minutes(30),
};
Properties
| Name | Type | Description |
|---|---|---|
| duration | Duration | The total amount of time that Kinesis Data Firehose spends on retries. |
duration
Type:
Duration
The total amount of time that Kinesis Data Firehose spends on retries.

.NET
Go
Java
Python
TypeScript (