Struct rusoto_sqs::ChangeMessageVisibilityBatchRequestEntry [] [src]

pub struct ChangeMessageVisibilityBatchRequestEntry {
    pub id: String,
    pub receipt_handle: String,
    pub visibility_timeout: Option<i64>,
}

Encloses a receipt handle and an entry id for each message in ChangeMessageVisibilityBatch.

All of the following list parameters must be prefixed with ChangeMessageVisibilityBatchRequestEntry.n, where n is an integer value starting with 1. For example, a parameter list for this action might look like this:

&amp;ChangeMessageVisibilityBatchRequestEntry.1.Id=change_visibility_msg_2

&amp;ChangeMessageVisibilityBatchRequestEntry.1.ReceiptHandle=<replaceable>Your_Receipt_Handle</replaceable>

&amp;ChangeMessageVisibilityBatchRequestEntry.1.VisibilityTimeout=45

Fields

An identifier for this particular receipt handle used to communicate the result.

The Ids of a batch request need to be unique within a request

A receipt handle.

The new value (in seconds) for the message's visibility timeout.

Trait Implementations

impl Default for ChangeMessageVisibilityBatchRequestEntry
[src]

[src]

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

impl Debug for ChangeMessageVisibilityBatchRequestEntry
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ChangeMessageVisibilityBatchRequestEntry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations