Skip to content

Commit 26e62bb

Browse files
Update generated code (#1936)
update generated code
1 parent 01d471a commit 26e62bb

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Changed
6+
7+
- AWS enhancement: Documentation updates.
8+
59
## 2.7.0
610

711
### Added

src/Input/CreateQueueRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ final class CreateQueueRequest extends Input
3434
* - `DelaySeconds` – The length of time, in seconds, for which the delivery of all messages in the queue is delayed.
3535
* Valid values: An integer from 0 to 900 seconds (15 minutes). Default: 0.
3636
* - `MaximumMessageSize` – The limit of how many bytes a message can contain before Amazon SQS rejects it. Valid
37-
* values: An integer from 1,024 bytes (1 KiB) to 262,144 bytes (256 KiB). Default: 262,144 (256 KiB).
37+
* values: An integer from 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB). Default: 1,048,576 bytes (1 MiB).
3838
* - `MessageRetentionPeriod` – The length of time, in seconds, for which Amazon SQS retains a message. Valid values:
3939
* An integer from 60 seconds (1 minute) to 1,209,600 seconds (14 days). Default: 345,600 (4 days). When you change a
4040
* queue's attributes, the change can take up to 60 seconds for most of the attributes to propagate throughout the

src/Input/SendMessageRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final class SendMessageRequest extends Input
2424
private $queueUrl;
2525

2626
/**
27-
* The message to send. The minimum size is one character. The maximum size is 256 KiB.
27+
* The message to send. The minimum size is one character. The maximum size is 1 MiB or 1,048,576 bytes.
2828
*
2929
* ! A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed. For more
3030
* ! information, see the W3C specification for characters [^1].

src/SqsClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ public function sendMessage($input): SendMessageResult
810810
* HTTP status code of `200`.
811811
*
812812
* The maximum allowed individual message size and the maximum total payload size (the sum of the individual lengths of
813-
* all of the batched messages) are both 256 KiB (262,144 bytes).
813+
* all of the batched messages) are both 1 MiB 1,048,576 bytes.
814814
*
815815
* ! A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed. For more
816816
* ! information, see the W3C specification for characters [^1].

src/ValueObject/MessageAttributeValue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* the content as the message body. For more information, see `SendMessage.`.
1010
*
1111
* `Name`, `type`, `value` and the message body must not be empty or null. All parts of the message attribute, including
12-
* `Name`, `Type`, and `Value`, are part of the message size restriction (256 KiB or 262,144 bytes).
12+
* `Name`, `Type`, and `Value`, are part of the message size restriction (1 MiB or 1,048,576 bytes).
1313
*/
1414
final class MessageAttributeValue
1515
{

0 commit comments

Comments
 (0)