Struct rusoto_sqs::BatchResultErrorEntry [] [src]

pub struct BatchResultErrorEntry {
    pub code: String,
    pub id: String,
    pub message: Option<String>,
    pub sender_fault: bool,
}

This is used in the responses of batch API to give a detailed description of the result of an action on each entry in the request.

Fields

An error code representing why the action failed on this entry.

The Id of an entry in a batch request.

A message explaining why the action failed on this entry.

Specifies whether the error happened due to the sender's fault.

Trait Implementations

impl Default for BatchResultErrorEntry
[src]

[src]

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

impl Debug for BatchResultErrorEntry
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for BatchResultErrorEntry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations