pub struct SqsQueue {Show 26 fields
pub name: String,
pub url: String,
pub queue_type: String,
pub created_timestamp: String,
pub messages_available: String,
pub messages_in_flight: String,
pub encryption: String,
pub content_based_deduplication: String,
pub last_modified_timestamp: String,
pub visibility_timeout: String,
pub message_retention_period: String,
pub maximum_message_size: String,
pub delivery_delay: String,
pub receive_message_wait_time: String,
pub high_throughput_fifo: String,
pub deduplication_scope: String,
pub fifo_throughput_limit: String,
pub dead_letter_queue: String,
pub messages_delayed: String,
pub redrive_allow_policy: String,
pub redrive_policy: String,
pub redrive_task_id: String,
pub redrive_task_start_time: String,
pub redrive_task_status: String,
pub redrive_task_percent: String,
pub redrive_task_destination: String,
}Fields§
§name: String§url: String§queue_type: String§created_timestamp: String§messages_available: String§messages_in_flight: String§encryption: String§content_based_deduplication: String§last_modified_timestamp: String§visibility_timeout: String§message_retention_period: String§maximum_message_size: String§delivery_delay: String§receive_message_wait_time: String§high_throughput_fifo: String§deduplication_scope: String§fifo_throughput_limit: String§dead_letter_queue: String§messages_delayed: String§redrive_allow_policy: String§redrive_policy: String§redrive_task_id: String§redrive_task_start_time: String§redrive_task_status: String§redrive_task_percent: String§redrive_task_destination: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for SqsQueue
impl RefUnwindSafe for SqsQueue
impl Send for SqsQueue
impl Sync for SqsQueue
impl Unpin for SqsQueue
impl UnwindSafe for SqsQueue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.