Skip to content

Commit c1f288c

Browse files
author
awstools
committed
docs(client-sqs): Documentation update for Amazon SQS Supports Large Payload Message feature
1 parent 914e762 commit c1f288c

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

clients/client-sqs/src/commands/SendMessageBatchCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, _
3737
* <p>The result of sending each message is reported individually in the response.
3838
* Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of <code>200</code>.</p>
3939
* <p>The maximum allowed individual message size and the maximum total payload size (the
40-
* sum of the individual lengths of all of the batched messages) are both 256 KiB (262,144
41-
* bytes).</p>
40+
* sum of the individual lengths of all of the batched messages) are both 1 MiB
41+
* 1,048,576 bytes.</p>
4242
* <important>
4343
* <p>A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed. For more information, see the <a href="http://www.w3.org/TR/REC-xml/#charsets">W3C specification for characters</a>.</p>
4444
* <p>

clients/client-sqs/src/models/models_0.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ export interface CreateQueueRequest {
573573
* <p>
574574
* <code>MaximumMessageSize</code> – The limit of how many bytes a message
575575
* can contain before Amazon SQS rejects it. Valid values: An integer from 1,024 bytes
576-
* (1 KiB) to 262,144 bytes (256 KiB). Default: 262,144 (256 KiB). </p>
576+
* (1 KiB) to 1,048,576 bytes (1 MiB). Default: 1,048,576 bytes (1 MiB). </p>
577577
* </li>
578578
* <li>
579579
* <p>
@@ -2134,7 +2134,7 @@ export interface ReceiveMessageRequest {
21342134
* <code>Name</code>, <code>type</code>, <code>value</code> and the message body must not
21352135
* be empty or null. All parts of the message attribute, including <code>Name</code>,
21362136
* <code>Type</code>, and <code>Value</code>, are part of the message size restriction
2137-
* (256 KiB or 262,144 bytes).</p>
2137+
* (1 MiB or 1,048,576 bytes).</p>
21382138
* @public
21392139
*/
21402140
export interface MessageAttributeValue {
@@ -2403,8 +2403,8 @@ export interface SendMessageRequest {
24032403
QueueUrl: string | undefined;
24042404

24052405
/**
2406-
* <p>The message to send. The minimum size is one character. The maximum size is 256
2407-
* KiB.</p>
2406+
* <p>The message to send. The minimum size is one character. The maximum size is
2407+
* 1 MiB or 1,048,576 bytes</p>
24082408
* <important>
24092409
* <p>A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed. For more information, see the <a href="http://www.w3.org/TR/REC-xml/#charsets">W3C specification for characters</a>.</p>
24102410
* <p>
@@ -2936,7 +2936,7 @@ export interface SetQueueAttributesRequest {
29362936
* <p>
29372937
* <code>MaximumMessageSize</code> – The limit of how many bytes a message
29382938
* can contain before Amazon SQS rejects it. Valid values: An integer from 1,024 bytes
2939-
* (1 KiB) up to 262,144 bytes (256 KiB). Default: 262,144 (256 KiB). </p>
2939+
* (1 KiB) up to 1,048,576 bytes (1 MiB). Default: 1,048,576 bytes (1 MiB). </p>
29402940
* </li>
29412941
* <li>
29422942
* <p>

0 commit comments

Comments
 (0)