Struct aws_sdk_sqs::types::DeleteMessageBatchRequestEntry
source · #[non_exhaustive]pub struct DeleteMessageBatchRequestEntry {
pub id: String,
pub receipt_handle: String,
}
Expand description
Encloses a receipt handle and an identifier for it.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: String
The identifier for this particular receipt handle. This is used to communicate the result.
The Id
s of a batch request need to be unique within a request.
This identifier can have up to 80 characters. The following characters are accepted: alphanumeric characters, hyphens(-), and underscores (_).
receipt_handle: String
A receipt handle.
Implementations§
source§impl DeleteMessageBatchRequestEntry
impl DeleteMessageBatchRequestEntry
sourcepub fn id(&self) -> &str
pub fn id(&self) -> &str
The identifier for this particular receipt handle. This is used to communicate the result.
The Id
s of a batch request need to be unique within a request.
This identifier can have up to 80 characters. The following characters are accepted: alphanumeric characters, hyphens(-), and underscores (_).
sourcepub fn receipt_handle(&self) -> &str
pub fn receipt_handle(&self) -> &str
A receipt handle.
source§impl DeleteMessageBatchRequestEntry
impl DeleteMessageBatchRequestEntry
sourcepub fn builder() -> DeleteMessageBatchRequestEntryBuilder
pub fn builder() -> DeleteMessageBatchRequestEntryBuilder
Creates a new builder-style object to manufacture DeleteMessageBatchRequestEntry
.
Trait Implementations§
source§impl Clone for DeleteMessageBatchRequestEntry
impl Clone for DeleteMessageBatchRequestEntry
source§fn clone(&self) -> DeleteMessageBatchRequestEntry
fn clone(&self) -> DeleteMessageBatchRequestEntry
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DeleteMessageBatchRequestEntry
impl PartialEq for DeleteMessageBatchRequestEntry
source§fn eq(&self, other: &DeleteMessageBatchRequestEntry) -> bool
fn eq(&self, other: &DeleteMessageBatchRequestEntry) -> bool
self
and other
values to be equal, and is used
by ==
.