Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated code #1038

Merged
merged 2 commits into from Jul 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.184.6"
"${LATEST}": "3.185.5"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Sqs/src/Input/CreateQueueRequest.php
Expand Up @@ -28,7 +28,7 @@ final class CreateQueueRequest extends Input

/**
* Add cost allocation tags to the specified Amazon SQS queue. For an overview, see Tagging Your Amazon SQS Queues in
* the *Amazon Simple Queue Service Developer Guide*.
* the *Amazon SQS Developer Guide*.
*
* @see https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-tags.html
*
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Sqs/src/Input/GetQueueUrlRequest.php
Expand Up @@ -20,7 +20,7 @@ final class GetQueueUrlRequest extends Input
private $queueName;

/**
* The AWS account ID of the account that created the queue.
* The account ID of the account that created the queue.
*
* @var string|null
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Service/Sqs/src/Input/SendMessageRequest.php
Expand Up @@ -40,8 +40,8 @@ final class SendMessageRequest extends Input
private $delaySeconds;

/**
* Each message attribute consists of a `Name`, `Type`, and `Value`. For more information, see Amazon SQS Message
* Attributes in the *Amazon Simple Queue Service Developer Guide*.
* Each message attribute consists of a `Name`, `Type`, and `Value`. For more information, see Amazon SQS message
* attributes in the *Amazon SQS Developer Guide*.
*
* @see https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes
*
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Sqs/src/Result/GetQueueUrlResult.php
Expand Up @@ -6,7 +6,7 @@
use AsyncAws\Core\Result;

/**
* For more information, see Interpreting Responses in the *Amazon Simple Queue Service Developer Guide*.
* For more information, see Interpreting Responses in the *Amazon SQS Developer Guide*.
*
* @see https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-api-responses.html
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Sqs/src/Result/SendMessageResult.php
Expand Up @@ -36,7 +36,7 @@ class SendMessageResult extends Result

/**
* An attribute containing the `MessageId` of the message sent to the queue. For more information, see Queue and Message
* Identifiers in the *Amazon Simple Queue Service Developer Guide*.
* Identifiers in the *Amazon SQS Developer Guide*.
*
* @see https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-message-identifiers.html
*/
Expand Down
5 changes: 2 additions & 3 deletions src/Service/Sqs/src/SqsClient.php
Expand Up @@ -47,7 +47,7 @@ class SqsClient extends AbstractApi
/**
* Changes the visibility timeout of a specified message in a queue to a new value. The default visibility timeout for a
* message is 30 seconds. The minimum is 0 seconds. The maximum is 12 hours. For more information, see Visibility
* Timeout in the *Amazon Simple Queue Service Developer Guide*.
* Timeout in the *Amazon SQS Developer Guide*.
*
* @see https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html
* @see https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_ChangeMessageVisibility.html
Expand Down Expand Up @@ -266,8 +266,7 @@ public function queueExists($input): QueueExistsWaiter

/**
* Retrieves one or more messages (up to 10), from the specified queue. Using the `WaitTimeSeconds` parameter enables
* long-poll support. For more information, see Amazon SQS Long Polling in the *Amazon Simple Queue Service Developer
* Guide*.
* long-poll support. For more information, see Amazon SQS Long Polling in the *Amazon SQS Developer Guide*.
*
* @see https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-long-polling.html
* @see https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_ReceiveMessage.html
Expand Down
8 changes: 4 additions & 4 deletions src/Service/Sqs/src/ValueObject/Message.php
Expand Up @@ -10,8 +10,8 @@
final class Message
{
/**
* A unique identifier for the message. A `MessageId`is considered unique across all AWS accounts for an extended period
* of time.
* A unique identifier for the message. A `MessageId`is considered unique across all accounts for an extended period of
* time.
*/
private $messageId;

Expand Down Expand Up @@ -46,8 +46,8 @@ final class Message
private $md5OfMessageAttributes;

/**
* Each message attribute consists of a `Name`, `Type`, and `Value`. For more information, see Amazon SQS Message
* Attributes in the *Amazon Simple Queue Service Developer Guide*.
* Each message attribute consists of a `Name`, `Type`, and `Value`. For more information, see Amazon SQS message
* attributes in the *Amazon SQS Developer Guide*.
*
* @see https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes
*/
Expand Down