Struct rusoto_firehose::RedshiftRetryOptions[][src]

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

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

Fields

The length of time during which Kinesis Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Kinesis Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.

Trait Implementations

impl Default for RedshiftRetryOptions
[src]

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

impl Debug for RedshiftRetryOptions
[src]

Formats the value using the given formatter. Read more

impl Clone for RedshiftRetryOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RedshiftRetryOptions
[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