Struct aws_sdk_sqs::model::DeleteMessageBatchRequestEntry
source · #[non_exhaustive]pub struct DeleteMessageBatchRequestEntry { /* private fields */ }
Expand description
Encloses a receipt handle and an identifier for it.
Implementations§
source§impl DeleteMessageBatchRequestEntry
impl DeleteMessageBatchRequestEntry
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
An 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) -> Option<&str>
pub fn receipt_handle(&self) -> Option<&str>
A receipt handle.
source§impl DeleteMessageBatchRequestEntry
impl DeleteMessageBatchRequestEntry
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<DeleteMessageBatchRequestEntry> for DeleteMessageBatchRequestEntry
impl PartialEq<DeleteMessageBatchRequestEntry> for DeleteMessageBatchRequestEntry
source§fn eq(&self, other: &DeleteMessageBatchRequestEntry) -> bool
fn eq(&self, other: &DeleteMessageBatchRequestEntry) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.