[][src]Struct rusoto_sqs::ListDeadLetterSourceQueuesResult

pub struct ListDeadLetterSourceQueuesResult {
    pub next_token: Option<String>,
    pub queue_urls: Vec<String>,
}

A list of your dead letter source queues.

Fields

next_token: Option<String>

Pagination token to include in the next request. Token value is null if there are no additional results to request, or if you did not set MaxResults in the request.

queue_urls: Vec<String>

A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead-letter queue.

Trait Implementations

impl Clone for ListDeadLetterSourceQueuesResult[src]

impl Debug for ListDeadLetterSourceQueuesResult[src]

impl Default for ListDeadLetterSourceQueuesResult[src]

impl PartialEq<ListDeadLetterSourceQueuesResult> for ListDeadLetterSourceQueuesResult[src]

impl StructuralPartialEq for ListDeadLetterSourceQueuesResult[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> From<T> 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.