AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Id.
Namespace: Amazon.SQS.Model
Assembly: AWSSDK.dll
Version: 0.0.3.0
public class SendMessageBatchRequestEntry : Object
The SendMessageBatchRequestEntry type exposes the following members
| Name | Description | |
|---|---|---|
 
 | 
SendMessageBatchRequestEntry() | Empty constructor used to set properties independently even when a simple constructor is available | 
 
 | 
SendMessageBatchRequestEntry(string, string) | Instantiates SendMessageBatchRequestEntry with the parameterized properties | 
| Name | Description | |
|---|---|---|
 
 | 
DelaySeconds | 
            Gets and sets the property DelaySeconds. 
             The number of seconds for which the message has to be delayed.  | 
 
 | 
Id | 
            Gets and sets the property Id. 
             An identifier for the message in this batch. This is used to communicate the result. Note that the Ids of a batch request need to be unique within the request.  | 
 
 | 
MessageAttributes | 
            Gets and sets the property MessageAttributes. 
             Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.  | 
 
 | 
MessageBody | 
            Gets and sets the property MessageBody. 
             Body of the message.  | 
This example shows how to send messages in batch.
var client = new AmazonSQSClient();
var entry1 = new SendMessageBatchRequestEntry
{
  DelaySeconds = 0,
  Id = "Entry1",
  MessageAttributes = new Dictionary<string, MessageAttributeValue>
  {
    {
      "MyNameAttribute", new MessageAttributeValue 
        { DataType = "String", StringValue = "John Doe" }
    },
    {
      "MyAddressAttribute", new MessageAttributeValue 
        { DataType = "String", StringValue = "123 Main St." }
    },
    {
      "MyRegionAttribute", new MessageAttributeValue 
        { DataType = "String", StringValue = "Any Town, United States" }
    }
  },
  MessageBody = "John Doe customer information."
};
var entry2 = new SendMessageBatchRequestEntry
{
  DelaySeconds = 0,
  Id = "Entry2",
  MessageAttributes = new Dictionary<string, MessageAttributeValue>
  {
    {
      "MyNameAttribute", new MessageAttributeValue 
        { DataType = "String", StringValue = "Jane Doe" }
    },
    {
      "MyAddressAttribute", new MessageAttributeValue 
        { DataType = "String", StringValue = "456 Center Road" }
    },
    {
      "MyRegionAttribute", new MessageAttributeValue 
        { DataType = "String", StringValue = "Any City, United States" }
    }
  },
  MessageBody = "Jane Doe customer information."
};
var entry3 = new SendMessageBatchRequestEntry
{
  DelaySeconds = 0,
  Id = "Entry3",
  MessageAttributes = new Dictionary<string, MessageAttributeValue>
  {
    {
      "MyNameAttribute", new MessageAttributeValue 
        { DataType = "String", StringValue = "Richard Doe" }
    },
    {
      "MyAddressAttribute", new MessageAttributeValue 
        { DataType = "String", StringValue = "789 East Blvd." }
    },
    {
      "MyRegionAttribute", new MessageAttributeValue 
        { DataType = "String", StringValue = "Anywhere, United States" }
    }
  },
  MessageBody = "Richard Doe customer information."
};
var request = new SendMessageBatchRequest
{
  Entries = new List<SendMessageBatchRequestEntry>() { entry1, entry2, entry3 },
  QueueUrl = "https://sqs.us-east-1.amazonaws.com/80398EXAMPLE/MyTestQueue"
};
var response = client.SendMessageBatch(request);
if (response.Successful.Count > 0)
{
  Console.WriteLine("Successfully sent:");
  foreach (var success in response.Successful)
  {
    Console.WriteLine("  For ID: '" + success.Id + "':");
    Console.WriteLine("    Message ID = " + success.MessageId);
    Console.WriteLine("    MD5 of message attributes = " +
      success.MD5OfMessageAttributes);
    Console.WriteLine("    MD5 of message body = " +
      success.MD5OfMessageBody);
  }
}
if (response.Failed.Count > 0)
{
  Console.WriteLine("Failed to be sent:");
  foreach (var fail in response.Failed)
  {
    Console.WriteLine("  For ID '" + fail.Id + "':");
    Console.WriteLine("    Code = " + fail.Code);
    Console.WriteLine("    Message = " + fail.Message);
    Console.WriteLine("    Sender's fault? = " +
      fail.SenderFault);
  }
}
      
      
.NET Framework: 
Supported in: 4.5, 4.0, 3.5
.NET for Windows Store apps: 
Supported in: Windows 8.1, Windows 8
.NET for Windows Phone: 
Supported in: Windows Phone 8.1, Windows Phone 8