Class: Aws::Firehose::Types::ElasticsearchRetryOptions

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

Overview

Note:

When making an API call, you may pass ElasticsearchRetryOptions data as a hash:

{
  duration_in_seconds: 1,
}

Configures retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon ES.

Instance Attribute Summary collapse

Instance Attribute Details

#duration_in_secondsInteger

After an initial failure to deliver to Amazon ES, 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)


1351
1352
1353
1354
# File 'lib/aws-sdk-firehose/types.rb', line 1351

class ElasticsearchRetryOptions < Struct.new(
  :duration_in_seconds)
  include Aws::Structure
end