[][src]Struct rusoto_firehose::ElasticsearchBufferingHints

pub struct ElasticsearchBufferingHints {
    pub interval_in_seconds: Option<i64>,
    pub size_in_m_bs: Option<i64>,
}

Describes the buffering to perform before delivering data to the Amazon ES destination.

Fields

interval_in_seconds: Option<i64>

Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300 (5 minutes).

size_in_m_bs: Option<i64>

Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

Trait Implementations

impl Clone for ElasticsearchBufferingHints[src]

impl Debug for ElasticsearchBufferingHints[src]

impl Default for ElasticsearchBufferingHints[src]

impl<'de> Deserialize<'de> for ElasticsearchBufferingHints[src]

impl PartialEq<ElasticsearchBufferingHints> for ElasticsearchBufferingHints[src]

impl Serialize for ElasticsearchBufferingHints[src]

impl StructuralPartialEq for ElasticsearchBufferingHints[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.