[][src]Struct rusoto_firehose::PutRecordBatchOutput

pub struct PutRecordBatchOutput {
    pub encrypted: Option<bool>,
    pub failed_put_count: i64,
    pub request_responses: Vec<PutRecordBatchResponseEntry>,
}

Fields

encrypted: Option<bool>

Indicates whether server-side encryption (SSE) was enabled during this operation.

failed_put_count: i64

The number of records that might have failed processing. This number might be greater than 0 even if the PutRecordBatch call succeeds. Check FailedPutCount to determine whether there are records that you need to resend.

request_responses: Vec<PutRecordBatchResponseEntry>

The results array. For each record, the index of the response element is the same as the index used in the request array.

Trait Implementations

impl Clone for PutRecordBatchOutput[src]

impl Debug for PutRecordBatchOutput[src]

impl Default for PutRecordBatchOutput[src]

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

impl PartialEq<PutRecordBatchOutput> for PutRecordBatchOutput[src]

impl StructuralPartialEq for PutRecordBatchOutput[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.