@aws-sdk/client-sqs 3.345.0 → 3.347.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/README.md +34 -6
  2. package/dist-cjs/SQS.js +6 -0
  3. package/dist-cjs/commands/CancelMessageMoveTaskCommand.js +46 -0
  4. package/dist-cjs/commands/ListMessageMoveTasksCommand.js +46 -0
  5. package/dist-cjs/commands/StartMessageMoveTaskCommand.js +46 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_0.js +28 -14
  8. package/dist-cjs/protocols/Aws_query.js +247 -1
  9. package/dist-es/SQS.js +6 -0
  10. package/dist-es/commands/CancelMessageMoveTaskCommand.js +42 -0
  11. package/dist-es/commands/ListMessageMoveTasksCommand.js +42 -0
  12. package/dist-es/commands/StartMessageMoveTaskCommand.js +42 -0
  13. package/dist-es/commands/index.js +3 -0
  14. package/dist-es/models/models_0.js +25 -12
  15. package/dist-es/protocols/Aws_query.js +242 -2
  16. package/dist-types/SQS.d.ts +31 -6
  17. package/dist-types/SQSClient.d.ts +15 -8
  18. package/dist-types/commands/AddPermissionCommand.d.ts +17 -23
  19. package/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +92 -0
  20. package/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +9 -12
  21. package/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +22 -13
  22. package/dist-types/commands/CreateQueueCommand.d.ts +17 -16
  23. package/dist-types/commands/DeleteMessageBatchCommand.d.ts +6 -10
  24. package/dist-types/commands/DeleteMessageCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteQueueCommand.d.ts +13 -8
  26. package/dist-types/commands/GetQueueUrlCommand.d.ts +7 -4
  27. package/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +11 -10
  28. package/dist-types/commands/ListMessageMoveTasksCommand.d.ts +93 -0
  29. package/dist-types/commands/ListQueueTagsCommand.d.ts +3 -2
  30. package/dist-types/commands/ListQueuesCommand.d.ts +12 -10
  31. package/dist-types/commands/PurgeQueueCommand.d.ts +7 -5
  32. package/dist-types/commands/ReceiveMessageCommand.d.ts +25 -14
  33. package/dist-types/commands/RemovePermissionCommand.d.ts +3 -2
  34. package/dist-types/commands/SendMessageBatchCommand.d.ts +14 -13
  35. package/dist-types/commands/SetQueueAttributesCommand.d.ts +7 -3
  36. package/dist-types/commands/StartMessageMoveTaskCommand.d.ts +100 -0
  37. package/dist-types/commands/TagQueueCommand.d.ts +1 -1
  38. package/dist-types/commands/UntagQueueCommand.d.ts +1 -1
  39. package/dist-types/commands/index.d.ts +3 -0
  40. package/dist-types/index.d.ts +10 -6
  41. package/dist-types/models/models_0.d.ts +852 -359
  42. package/dist-types/protocols/Aws_query.d.ts +27 -0
  43. package/dist-types/ts3.4/SQS.d.ts +51 -0
  44. package/dist-types/ts3.4/SQSClient.d.ts +18 -0
  45. package/dist-types/ts3.4/commands/CancelMessageMoveTaskCommand.d.ts +42 -0
  46. package/dist-types/ts3.4/commands/ListMessageMoveTasksCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/StartMessageMoveTaskCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  49. package/dist-types/ts3.4/models/models_0.d.ts +47 -7
  50. package/dist-types/ts3.4/protocols/Aws_query.d.ts +36 -0
  51. package/package.json +31 -31
@@ -23,13 +23,17 @@ export interface ReceiveMessageCommandOutput extends ReceiveMessageResult, __Met
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>Retrieves one or more messages (up to 10), from the specified queue. Using the <code>WaitTimeSeconds</code> parameter enables long-poll support.
27
- * For more information, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-long-polling.html">Amazon SQS Long Polling</a> in the <i>Amazon SQS Developer Guide</i>.
28
- * </p>
29
- * <p>Short poll is the default behavior where a weighted random set of machines is sampled on a <code>ReceiveMessage</code> call. Thus, only the messages on the sampled machines are returned.
30
- * If the number of messages in the queue is small (fewer than 1,000), you most likely get fewer messages than you requested per <code>ReceiveMessage</code> call. If the number of messages in the queue is extremely small,
31
- * you might not receive any messages in a particular <code>ReceiveMessage</code> response. If this happens, repeat the request.
32
- * </p>
26
+ * <p>Retrieves one or more messages (up to 10), from the specified queue. Using the
27
+ * <code>WaitTimeSeconds</code> parameter enables long-poll support. For more
28
+ * information, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-long-polling.html">Amazon SQS
29
+ * Long Polling</a> in the <i>Amazon SQS Developer Guide</i>. </p>
30
+ * <p>Short poll is the default behavior where a weighted random set of machines is sampled
31
+ * on a <code>ReceiveMessage</code> call. Thus, only the messages on the sampled machines
32
+ * are returned. If the number of messages in the queue is small (fewer than 1,000), you
33
+ * most likely get fewer messages than you requested per <code>ReceiveMessage</code> call.
34
+ * If the number of messages in the queue is extremely small, you might not receive any
35
+ * messages in a particular <code>ReceiveMessage</code> response. If this happens, repeat
36
+ * the request. </p>
33
37
  * <p>For each message returned, the response includes the following:</p>
34
38
  * <ul>
35
39
  * <li>
@@ -39,7 +43,8 @@ export interface ReceiveMessageCommandOutput extends ReceiveMessageResult, __Met
39
43
  * <p>An MD5 digest of the message body. For information about MD5, see <a href="https://www.ietf.org/rfc/rfc1321.txt">RFC1321</a>.</p>
40
44
  * </li>
41
45
  * <li>
42
- * <p>The <code>MessageId</code> you received when you sent the message to the queue.</p>
46
+ * <p>The <code>MessageId</code> you received when you sent the message to the
47
+ * queue.</p>
43
48
  * </li>
44
49
  * <li>
45
50
  * <p>The receipt handle.</p>
@@ -51,11 +56,17 @@ export interface ReceiveMessageCommandOutput extends ReceiveMessageResult, __Met
51
56
  * <p>An MD5 digest of the message attributes.</p>
52
57
  * </li>
53
58
  * </ul>
54
- * <p>The receipt handle is the identifier you must provide when deleting the message. For more information, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-message-identifiers.html">Queue
55
- * and Message Identifiers</a> in the <i>Amazon SQS Developer Guide</i>.</p>
56
- * <p>You can provide the <code>VisibilityTimeout</code> parameter in your request. The parameter is applied to the messages that Amazon SQS returns in the response. If you don't include the parameter, the overall visibility timeout for the queue
57
- * is used for the returned messages. For more information, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html">Visibility Timeout</a> in the <i>Amazon SQS Developer Guide</i>.</p>
58
- * <p>A message that isn't deleted or a message whose visibility isn't extended before the visibility timeout expires counts as a failed receive. Depending on the configuration of the queue, the message might be sent to the dead-letter queue.</p>
59
+ * <p>The receipt handle is the identifier you must provide when deleting the message. For
60
+ * more information, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-message-identifiers.html">Queue and Message Identifiers</a> in the <i>Amazon SQS Developer
61
+ * Guide</i>.</p>
62
+ * <p>You can provide the <code>VisibilityTimeout</code> parameter in your request. The
63
+ * parameter is applied to the messages that Amazon SQS returns in the response. If you don't
64
+ * include the parameter, the overall visibility timeout for the queue is used for the
65
+ * returned messages. For more information, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html">Visibility Timeout</a> in the <i>Amazon SQS Developer
66
+ * Guide</i>.</p>
67
+ * <p>A message that isn't deleted or a message whose visibility isn't extended before the
68
+ * visibility timeout expires counts as a failed receive. Depending on the configuration of
69
+ * the queue, the message might be sent to the dead-letter queue.</p>
59
70
  * <note>
60
71
  * <p>In the future, new attributes might be added. If you write code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.</p>
61
72
  * </note>
@@ -118,7 +129,7 @@ export interface ReceiveMessageCommandOutput extends ReceiveMessageResult, __Met
118
129
  *
119
130
  * @throws {@link OverLimit} (client fault)
120
131
  * <p>The specified action violates a limit. For example, <code>ReceiveMessage</code>
121
- * returns this error if the maximum number of inflight messages is reached and
132
+ * returns this error if the maximum number of in flight messages is reached and
122
133
  * <code>AddPermission</code> returns this error if the maximum number of permissions
123
134
  * for the queue is reached.</p>
124
135
  *
@@ -23,7 +23,8 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>Revokes any permissions in the queue policy that matches the specified <code>Label</code> parameter.</p>
26
+ * <p>Revokes any permissions in the queue policy that matches the specified
27
+ * <code>Label</code> parameter.</p>
27
28
  * <note>
28
29
  * <ul>
29
30
  * <li>
@@ -32,7 +33,7 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
32
33
  * <li>
33
34
  * <p>Cross-account permissions don't apply to this action. For more information,
34
35
  * see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant
35
- * cross-account permissions to a role and a user name</a> in the <i>Amazon SQS Developer Guide</i>.</p>
36
+ * cross-account permissions to a role and a username</a> in the <i>Amazon SQS Developer Guide</i>.</p>
36
37
  * </li>
37
38
  * <li>
38
39
  * <p>To remove the ability to change queue permissions, you must deny permission to the <code>AddPermission</code>, <code>RemovePermission</code>, and <code>SetQueueAttributes</code> actions in your IAM policy.</p>
@@ -23,10 +23,16 @@ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, _
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>Delivers up to ten messages to the specified queue. This is a batch version of <code>
27
- * <a>SendMessage</a>.</code> For a FIFO queue, multiple messages within a single batch are enqueued in the order they are sent.</p>
28
- * <p>The result of sending each message is reported individually in the response. 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>
29
- * <p>The maximum allowed individual message size and the maximum total payload size (the sum of the individual lengths of all of the batched messages) are both 256 KB (262,144 bytes).</p>
26
+ * <p>You can use <code>SendMessageBatch</code> to send up to 10 messages to the specified
27
+ * queue by assigning either identical or different values to each message (or by not
28
+ * assigning values at all). This is a batch version of <code>
29
+ * <a>SendMessage</a>.</code> For a FIFO queue, multiple messages within a single batch are enqueued
30
+ * in the order they are sent.</p>
31
+ * <p>The result of sending each message is reported individually in the response.
32
+ * 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>
33
+ * <p>The maximum allowed individual message size and the maximum total payload size (the
34
+ * sum of the individual lengths of all of the batched messages) are both 256 KiB (262,144
35
+ * bytes).</p>
30
36
  * <important>
31
37
  * <p>A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed:</p>
32
38
  * <p>
@@ -34,14 +40,8 @@ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, _
34
40
  * </p>
35
41
  * <p>Any characters not included in this list will be rejected. For more information, see the <a href="http://www.w3.org/TR/REC-xml/#charsets">W3C specification for characters</a>.</p>
36
42
  * </important>
37
- * <p>If you don't specify the <code>DelaySeconds</code> parameter for an entry, Amazon SQS uses the default value for the queue.</p>
38
- * <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p>
39
- * <p>
40
- * <code>&AttributeName.1=first</code>
41
- * </p>
42
- * <p>
43
- * <code>&AttributeName.2=second</code>
44
- * </p>
43
+ * <p>If you don't specify the <code>DelaySeconds</code> parameter for an entry, Amazon SQS uses
44
+ * the default value for the queue.</p>
45
45
  * @example
46
46
  * Use a bare-bones client and the command you need to make an API call.
47
47
  * ```javascript
@@ -127,7 +127,8 @@ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, _
127
127
  * <p>The batch request doesn't contain any entries.</p>
128
128
  *
129
129
  * @throws {@link InvalidBatchEntryId} (client fault)
130
- * <p>The <code>Id</code> of a batch entry in a batch request doesn't abide by the specification.</p>
130
+ * <p>The <code>Id</code> of a batch entry in a batch request doesn't abide by the
131
+ * specification.</p>
131
132
  *
132
133
  * @throws {@link TooManyEntriesInBatchRequest} (client fault)
133
134
  * <p>The batch request contains more entries than permissible.</p>
@@ -23,8 +23,12 @@ export interface SetQueueAttributesCommandOutput extends __MetadataBearer {
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>Sets the value of one or more queue attributes. When you change a queue's attributes, the change can take up to 60 seconds for most of the attributes to propagate throughout the Amazon SQS system.
27
- * Changes made to the <code>MessageRetentionPeriod</code> attribute can take up to 15 minutes.</p>
26
+ * <p>Sets the value of one or more queue attributes. When you change a queue's attributes,
27
+ * the change can take up to 60 seconds for most of the attributes to propagate throughout
28
+ * the Amazon SQS system. Changes made to the <code>MessageRetentionPeriod</code> attribute can
29
+ * take up to 15 minutes and will impact existing messages in the queue potentially causing
30
+ * them to be expired and deleted if the <code>MessageRetentionPeriod</code> is reduced
31
+ * below the age of existing messages.</p>
28
32
  * <note>
29
33
  * <ul>
30
34
  * <li>
@@ -33,7 +37,7 @@ export interface SetQueueAttributesCommandOutput extends __MetadataBearer {
33
37
  * <li>
34
38
  * <p>Cross-account permissions don't apply to this action. For more information,
35
39
  * see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant
36
- * cross-account permissions to a role and a user name</a> in the <i>Amazon SQS Developer Guide</i>.</p>
40
+ * cross-account permissions to a role and a username</a> in the <i>Amazon SQS Developer Guide</i>.</p>
37
41
  * </li>
38
42
  * <li>
39
43
  * <p>To remove the ability to change queue permissions, you must deny permission to the <code>AddPermission</code>, <code>RemovePermission</code>, and <code>SetQueueAttributes</code> actions in your IAM policy.</p>
@@ -0,0 +1,100 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { StartMessageMoveTaskRequest, StartMessageMoveTaskResult } from "../models/models_0";
5
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartMessageMoveTaskCommand}.
14
+ */
15
+ export interface StartMessageMoveTaskCommandInput extends StartMessageMoveTaskRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartMessageMoveTaskCommand}.
21
+ */
22
+ export interface StartMessageMoveTaskCommandOutput extends StartMessageMoveTaskResult, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Starts an asynchronous task to move messages from a specified source queue to a
27
+ * specified destination queue.</p>
28
+ * <note>
29
+ * <ul>
30
+ * <li>
31
+ * <p>This action is currently limited to supporting message redrive from
32
+ * dead-letter queues (DLQs) only. In this context, the source queue is the
33
+ * dead-letter queue (DLQ), while the destination queue can be the original
34
+ * source queue (from which the messages were driven to the dead-letter-queue),
35
+ * or a custom destination queue. </p>
36
+ * </li>
37
+ * <li>
38
+ * <p>Currently, only standard queues are supported.</p>
39
+ * </li>
40
+ * <li>
41
+ * <p>Only one active message movement task is supported per queue at any given
42
+ * time.</p>
43
+ * </li>
44
+ * </ul>
45
+ * </note>
46
+ * @example
47
+ * Use a bare-bones client and the command you need to make an API call.
48
+ * ```javascript
49
+ * import { SQSClient, StartMessageMoveTaskCommand } from "@aws-sdk/client-sqs"; // ES Modules import
50
+ * // const { SQSClient, StartMessageMoveTaskCommand } = require("@aws-sdk/client-sqs"); // CommonJS import
51
+ * const client = new SQSClient(config);
52
+ * const input = { // StartMessageMoveTaskRequest
53
+ * SourceArn: "STRING_VALUE", // required
54
+ * DestinationArn: "STRING_VALUE",
55
+ * MaxNumberOfMessagesPerSecond: Number("int"),
56
+ * };
57
+ * const command = new StartMessageMoveTaskCommand(input);
58
+ * const response = await client.send(command);
59
+ * // { // StartMessageMoveTaskResult
60
+ * // TaskHandle: "STRING_VALUE",
61
+ * // };
62
+ *
63
+ * ```
64
+ *
65
+ * @param StartMessageMoveTaskCommandInput - {@link StartMessageMoveTaskCommandInput}
66
+ * @returns {@link StartMessageMoveTaskCommandOutput}
67
+ * @see {@link StartMessageMoveTaskCommandInput} for command's `input` shape.
68
+ * @see {@link StartMessageMoveTaskCommandOutput} for command's `response` shape.
69
+ * @see {@link SQSClientResolvedConfig | config} for SQSClient's `config` shape.
70
+ *
71
+ * @throws {@link ResourceNotFoundException} (client fault)
72
+ * <p>One or more specified resources don't exist.</p>
73
+ *
74
+ * @throws {@link UnsupportedOperation} (client fault)
75
+ * <p>Error code 400. Unsupported operation.</p>
76
+ *
77
+ * @throws {@link SQSServiceException}
78
+ * <p>Base exception class for all service exceptions from SQS service.</p>
79
+ *
80
+ */
81
+ export declare class StartMessageMoveTaskCommand extends $Command<StartMessageMoveTaskCommandInput, StartMessageMoveTaskCommandOutput, SQSClientResolvedConfig> {
82
+ readonly input: StartMessageMoveTaskCommandInput;
83
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
84
+ /**
85
+ * @public
86
+ */
87
+ constructor(input: StartMessageMoveTaskCommandInput);
88
+ /**
89
+ * @internal
90
+ */
91
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMessageMoveTaskCommandInput, StartMessageMoveTaskCommandOutput>;
92
+ /**
93
+ * @internal
94
+ */
95
+ private serialize;
96
+ /**
97
+ * @internal
98
+ */
99
+ private deserialize;
100
+ }
@@ -46,7 +46,7 @@ export interface TagQueueCommandOutput extends __MetadataBearer {
46
46
  * <note>
47
47
  * <p>Cross-account permissions don't apply to this action. For more information,
48
48
  * see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant
49
- * cross-account permissions to a role and a user name</a> in the <i>Amazon SQS Developer Guide</i>.</p>
49
+ * cross-account permissions to a role and a username</a> in the <i>Amazon SQS Developer Guide</i>.</p>
50
50
  * </note>
51
51
  * @example
52
52
  * Use a bare-bones client and the command you need to make an API call.
@@ -28,7 +28,7 @@ export interface UntagQueueCommandOutput extends __MetadataBearer {
28
28
  * <note>
29
29
  * <p>Cross-account permissions don't apply to this action. For more information,
30
30
  * see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant
31
- * cross-account permissions to a role and a user name</a> in the <i>Amazon SQS Developer Guide</i>.</p>
31
+ * cross-account permissions to a role and a username</a> in the <i>Amazon SQS Developer Guide</i>.</p>
32
32
  * </note>
33
33
  * @example
34
34
  * Use a bare-bones client and the command you need to make an API call.
@@ -1,4 +1,5 @@
1
1
  export * from "./AddPermissionCommand";
2
+ export * from "./CancelMessageMoveTaskCommand";
2
3
  export * from "./ChangeMessageVisibilityBatchCommand";
3
4
  export * from "./ChangeMessageVisibilityCommand";
4
5
  export * from "./CreateQueueCommand";
@@ -8,6 +9,7 @@ export * from "./DeleteQueueCommand";
8
9
  export * from "./GetQueueAttributesCommand";
9
10
  export * from "./GetQueueUrlCommand";
10
11
  export * from "./ListDeadLetterSourceQueuesCommand";
12
+ export * from "./ListMessageMoveTasksCommand";
11
13
  export * from "./ListQueueTagsCommand";
12
14
  export * from "./ListQueuesCommand";
13
15
  export * from "./PurgeQueueCommand";
@@ -16,5 +18,6 @@ export * from "./RemovePermissionCommand";
16
18
  export * from "./SendMessageBatchCommand";
17
19
  export * from "./SendMessageCommand";
18
20
  export * from "./SetQueueAttributesCommand";
21
+ export * from "./StartMessageMoveTaskCommand";
19
22
  export * from "./TagQueueCommand";
20
23
  export * from "./UntagQueueCommand";
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * <p>Welcome to the <i>Amazon SQS API Reference</i>.</p>
3
- * <p>Amazon SQS is a reliable, highly-scalable hosted queue for storing messages as they travel between applications or microservices. Amazon SQS moves data between distributed application components and helps you decouple these components.</p>
4
- * <p>For information on the permissions you need to use this API, see
5
- * <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-authentication-and-access-control.html">Identity and
6
- * access management</a> in the <i>Amazon SQS Developer Guide.</i>
3
+ * <p>Amazon SQS is a reliable, highly-scalable hosted queue for storing messages as they travel
4
+ * between applications or microservices. Amazon SQS moves data between distributed application
5
+ * components and helps you decouple these components.</p>
6
+ * <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-authentication-and-access-control.html">Identity and access management</a> in the <i>Amazon SQS Developer
7
+ * Guide.</i>
7
8
  * </p>
8
- * <p>You can use <a href="http://aws.amazon.com/tools/#sdk">Amazon Web Services SDKs</a> to access Amazon SQS using your favorite programming language. The SDKs perform tasks such as the following automatically:</p>
9
+ * <p>You can use <a href="http://aws.amazon.com/tools/#sdk">Amazon Web Services SDKs</a> to access
10
+ * Amazon SQS using your favorite programming language. The SDKs perform tasks such as the
11
+ * following automatically:</p>
9
12
  * <ul>
10
13
  * <li>
11
14
  * <p>Cryptographically sign your service requests</p>
@@ -61,7 +64,8 @@
61
64
  * <ul>
62
65
  * <li>
63
66
  * <p>
64
- * <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#sqs_region">Regions and Endpoints</a>
67
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#sqs_region">Regions and
68
+ * Endpoints</a>
65
69
  * </p>
66
70
  * </li>
67
71
  * </ul>