HttpRetryOptions

class aws_cdk.aws_kinesisfirehose.HttpRetryOptions(*, duration)

Bases: object

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.

Parameters:

duration (Duration) – The total amount of time that Kinesis Data Firehose spends on retries.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk as cdk
from aws_cdk import aws_kinesisfirehose as kinesisfirehose

http_retry_options = kinesisfirehose.HttpRetryOptions(
    duration=cdk.Duration.minutes(30)
)

Attributes

duration

The total amount of time that Kinesis Data Firehose spends on retries.