AWS Kinesis · Schema

HttpEndpointRetryOptions

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.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
DurationInSeconds object
View JSON Schema on GitHub

JSON Schema

kinesis-httpendpointretryoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HttpEndpointRetryOptions",
  "title": "HttpEndpointRetryOptions",
  "type": "object",
  "properties": {
    "DurationInSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HttpEndpointRetryDurationInSeconds"
        },
        {
          "description": "The total amount of time that Kinesis Data Firehose spends on retries. This duration starts after the initial attempt to send data to the custom destination via HTTPS endpoint fails. It doesn't include the periods during which Kinesis Data Firehose waits for acknowledgment from the specified destination after each attempt. "
        }
      ]
    }
  },
  "description": "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."
}