C# Class Amazon.SQS.Model.ChangeMessageVisibilityBatchRequestEntry

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

IMPORTANT: All of the following parameters are list parameters that 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:

&ChangeMessageVisibilityBatchRequestEntry.1.Id=change_visibility_msg_2

&ChangeMessageVisibilityBatchRequestEntry.1.ReceiptHandle=Your_Receipt_Handle

&ChangeMessageVisibilityBatchRequestEntry.1.VisibilityTimeout=45

Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
ChangeMessageVisibilityBatchRequestEntry ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

ChangeMessageVisibilityBatchRequestEntry ( string id, string receiptHandle ) : System

Instantiates ChangeMessageVisibilityBatchRequestEntry with the parameterized properties

Private Methods

Method Description
IsSetId ( ) : bool
IsSetReceiptHandle ( ) : bool
IsSetVisibilityTimeout ( ) : bool

Method Details

ChangeMessageVisibilityBatchRequestEntry() public method

Empty constructor used to set properties independently even when a simple constructor is available
public ChangeMessageVisibilityBatchRequestEntry ( ) : System
return System

ChangeMessageVisibilityBatchRequestEntry() public method

Instantiates ChangeMessageVisibilityBatchRequestEntry with the parameterized properties
public ChangeMessageVisibilityBatchRequestEntry ( string id, string receiptHandle ) : System
id string 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
receiptHandle string A receipt handle.
return System