Struct rusoto_firehose::ElasticsearchRetryOptions[][src]

pub struct ElasticsearchRetryOptions {
    pub duration_in_seconds: Option<i64>,
}

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

Fields

After an initial failure to deliver to Amazon ES, the total amount of time during which Kinesis Firehose re-attempts 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.

Trait Implementations

impl Default for ElasticsearchRetryOptions
[src]

Returns the "default value" for a type. Read more

impl Debug for ElasticsearchRetryOptions
[src]

Formats the value using the given formatter. Read more

impl Clone for ElasticsearchRetryOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ElasticsearchRetryOptions
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations