Class: Aws::Firehose::Types::AmazonOpenSearchServerlessRetryOptions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-firehose/types.rb

Overview

Configures retry behavior in case Kinesis Data Firehose is unable to deliver documents to the Serverless offering for Amazon OpenSearch Service.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#duration_in_secondsInteger

After an initial failure to deliver to the Serverless offering for Amazon OpenSearch Service, the total amount of time during which Kinesis Data Firehose retries delivery (including the first attempt). After this time has elapsed, the failed documents are written to Amazon S3. Default value is 300 seconds (5 minutes). A value of 0 (zero) results in no retries.

Returns:

  • (Integer)


250
251
252
253
254
# File 'lib/aws-sdk-firehose/types.rb', line 250

class AmazonOpenSearchServerlessRetryOptions < Struct.new(
  :duration_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end