Struct rusoto_events::PutEventsResponse[][src]

pub struct PutEventsResponse {
    pub entries: Option<Vec<PutEventsResultEntry>>,
    pub failed_entry_count: Option<i64>,
}

Fields

The successfully and unsuccessfully ingested events results. If the ingestion was successful, the entry has the event ID in it. Otherwise, you can use the error code and error message to identify the problem with the entry.

The number of failed entries.

Trait Implementations

impl Default for PutEventsResponse
[src]

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

impl Debug for PutEventsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for PutEventsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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