@aws-sdk/client-sqs 3.445.0 → 3.446.0
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.
- package/README.md +8 -7
- package/dist-cjs/commands/AddPermissionCommand.js +3 -3
- package/dist-cjs/commands/CancelMessageMoveTaskCommand.js +3 -3
- package/dist-cjs/commands/ChangeMessageVisibilityBatchCommand.js +3 -3
- package/dist-cjs/commands/ChangeMessageVisibilityCommand.js +3 -3
- package/dist-cjs/commands/CreateQueueCommand.js +3 -3
- package/dist-cjs/commands/DeleteMessageBatchCommand.js +3 -3
- package/dist-cjs/commands/DeleteMessageCommand.js +3 -3
- package/dist-cjs/commands/DeleteQueueCommand.js +3 -3
- package/dist-cjs/commands/GetQueueAttributesCommand.js +3 -3
- package/dist-cjs/commands/GetQueueUrlCommand.js +3 -3
- package/dist-cjs/commands/ListDeadLetterSourceQueuesCommand.js +3 -3
- package/dist-cjs/commands/ListMessageMoveTasksCommand.js +3 -3
- package/dist-cjs/commands/ListQueueTagsCommand.js +3 -3
- package/dist-cjs/commands/ListQueuesCommand.js +3 -3
- package/dist-cjs/commands/PurgeQueueCommand.js +3 -3
- package/dist-cjs/commands/ReceiveMessageCommand.js +3 -3
- package/dist-cjs/commands/RemovePermissionCommand.js +3 -3
- package/dist-cjs/commands/SendMessageBatchCommand.js +3 -3
- package/dist-cjs/commands/SendMessageCommand.js +3 -3
- package/dist-cjs/commands/SetQueueAttributesCommand.js +3 -3
- package/dist-cjs/commands/StartMessageMoveTaskCommand.js +3 -3
- package/dist-cjs/commands/TagQueueCommand.js +3 -3
- package/dist-cjs/commands/UntagQueueCommand.js +3 -3
- package/dist-cjs/models/models_0.js +171 -21
- package/dist-cjs/protocols/Aws_json1_0.js +2025 -0
- package/dist-es/commands/AddPermissionCommand.js +1 -1
- package/dist-es/commands/CancelMessageMoveTaskCommand.js +1 -1
- package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +1 -1
- package/dist-es/commands/ChangeMessageVisibilityCommand.js +1 -1
- package/dist-es/commands/CreateQueueCommand.js +1 -1
- package/dist-es/commands/DeleteMessageBatchCommand.js +1 -1
- package/dist-es/commands/DeleteMessageCommand.js +1 -1
- package/dist-es/commands/DeleteQueueCommand.js +1 -1
- package/dist-es/commands/GetQueueAttributesCommand.js +1 -1
- package/dist-es/commands/GetQueueUrlCommand.js +1 -1
- package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +1 -1
- package/dist-es/commands/ListMessageMoveTasksCommand.js +1 -1
- package/dist-es/commands/ListQueueTagsCommand.js +1 -1
- package/dist-es/commands/ListQueuesCommand.js +1 -1
- package/dist-es/commands/PurgeQueueCommand.js +1 -1
- package/dist-es/commands/ReceiveMessageCommand.js +1 -1
- package/dist-es/commands/RemovePermissionCommand.js +1 -1
- package/dist-es/commands/SendMessageBatchCommand.js +1 -1
- package/dist-es/commands/SendMessageCommand.js +1 -1
- package/dist-es/commands/SetQueueAttributesCommand.js +1 -1
- package/dist-es/commands/StartMessageMoveTaskCommand.js +1 -1
- package/dist-es/commands/TagQueueCommand.js +1 -1
- package/dist-es/commands/UntagQueueCommand.js +1 -1
- package/dist-es/models/models_0.js +155 -16
- package/dist-es/protocols/Aws_json1_0.js +1976 -0
- package/dist-types/SQS.d.ts +8 -7
- package/dist-types/SQSClient.d.ts +8 -7
- package/dist-types/commands/AddPermissionCommand.d.ts +46 -11
- package/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +25 -0
- package/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +34 -1
- package/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +48 -8
- package/dist-types/commands/CreateQueueCommand.d.ts +45 -10
- package/dist-types/commands/DeleteMessageBatchCommand.d.ts +34 -1
- package/dist-types/commands/DeleteMessageCommand.d.ts +37 -6
- package/dist-types/commands/DeleteQueueCommand.d.ts +34 -3
- package/dist-types/commands/GetQueueAttributesCommand.d.ts +33 -1
- package/dist-types/commands/GetQueueUrlCommand.d.ts +30 -2
- package/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +28 -0
- package/dist-types/commands/ListMessageMoveTasksCommand.d.ts +26 -1
- package/dist-types/commands/ListQueueTagsCommand.d.ts +38 -6
- package/dist-types/commands/ListQueuesCommand.d.ts +32 -4
- package/dist-types/commands/PurgeQueueCommand.d.ts +28 -0
- package/dist-types/commands/ReceiveMessageCommand.d.ts +73 -6
- package/dist-types/commands/RemovePermissionCommand.d.ts +37 -4
- package/dist-types/commands/SendMessageBatchCommand.d.ts +78 -9
- package/dist-types/commands/SendMessageCommand.d.ts +70 -3
- package/dist-types/commands/SetQueueAttributesCommand.d.ts +53 -9
- package/dist-types/commands/StartMessageMoveTaskCommand.d.ts +25 -0
- package/dist-types/commands/TagQueueCommand.d.ts +44 -10
- package/dist-types/commands/UntagQueueCommand.d.ts +38 -5
- package/dist-types/index.d.ts +8 -7
- package/dist-types/models/models_0.d.ts +633 -374
- package/dist-types/protocols/{Aws_query.d.ts → Aws_json1_0.d.ts} +46 -46
- package/dist-types/ts3.4/models/models_0.d.ts +87 -22
- package/package.json +1 -2
- package/dist-cjs/protocols/Aws_query.js +0 -2367
- package/dist-es/protocols/Aws_query.js +0 -2318
- /package/dist-types/ts3.4/protocols/{Aws_query.d.ts → Aws_json1_0.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -7,15 +7,15 @@
|
|
|
7
7
|
AWS SDK for JavaScript SQS Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
9
|
<p>Welcome to the <i>Amazon SQS API Reference</i>.</p>
|
|
10
|
-
<p>Amazon SQS is a reliable, highly-scalable hosted queue for storing messages as they
|
|
11
|
-
between applications or microservices. Amazon SQS moves data between distributed
|
|
12
|
-
components and helps you decouple these components.</p>
|
|
10
|
+
<p>Amazon SQS is a reliable, highly-scalable hosted queue for storing messages as they
|
|
11
|
+
travel between applications or microservices. Amazon SQS moves data between distributed
|
|
12
|
+
application components and helps you decouple these components.</p>
|
|
13
13
|
<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
|
|
14
14
|
Guide.</i>
|
|
15
15
|
</p>
|
|
16
|
-
<p>You can use <a href="http://aws.amazon.com/tools/#sdk">Amazon Web Services
|
|
17
|
-
Amazon SQS using your favorite programming language. The SDKs
|
|
18
|
-
following automatically:</p>
|
|
16
|
+
<p>You can use <a href="http://aws.amazon.com/tools/#sdk">Amazon Web Services
|
|
17
|
+
SDKs</a> to access Amazon SQS using your favorite programming language. The SDKs
|
|
18
|
+
perform tasks such as the following automatically:</p>
|
|
19
19
|
<ul>
|
|
20
20
|
<li>
|
|
21
21
|
<p>Cryptographically sign your service requests</p>
|
|
@@ -60,7 +60,8 @@ following automatically:</p>
|
|
|
60
60
|
</li>
|
|
61
61
|
<li>
|
|
62
62
|
<p>
|
|
63
|
-
<a href="http://docs.aws.amazon.com/cli/latest/reference/sqs/index.html">Amazon SQS in the <i>Command Line
|
|
63
|
+
<a href="http://docs.aws.amazon.com/cli/latest/reference/sqs/index.html">Amazon SQS in the <i>Command Line
|
|
64
|
+
Interface</i>
|
|
64
65
|
</a>
|
|
65
66
|
</p>
|
|
66
67
|
</li>
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class AddPermissionCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class AddPermissionCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_AddPermissionCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_AddPermissionCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.AddPermissionCommand = AddPermissionCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class CancelMessageMoveTaskCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class CancelMessageMoveTaskCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_CancelMessageMoveTaskCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_CancelMessageMoveTaskCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.CancelMessageMoveTaskCommand = CancelMessageMoveTaskCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class ChangeMessageVisibilityBatchCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class ChangeMessageVisibilityBatchCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_ChangeMessageVisibilityBatchCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_ChangeMessageVisibilityBatchCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.ChangeMessageVisibilityBatchCommand = ChangeMessageVisibilityBatchCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class ChangeMessageVisibilityCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class ChangeMessageVisibilityCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_ChangeMessageVisibilityCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_ChangeMessageVisibilityCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.ChangeMessageVisibilityCommand = ChangeMessageVisibilityCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class CreateQueueCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class CreateQueueCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_CreateQueueCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_CreateQueueCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.CreateQueueCommand = CreateQueueCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class DeleteMessageBatchCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class DeleteMessageBatchCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_DeleteMessageBatchCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_DeleteMessageBatchCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.DeleteMessageBatchCommand = DeleteMessageBatchCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class DeleteMessageCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class DeleteMessageCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_DeleteMessageCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_DeleteMessageCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.DeleteMessageCommand = DeleteMessageCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class DeleteQueueCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class DeleteQueueCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_DeleteQueueCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_DeleteQueueCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.DeleteQueueCommand = DeleteQueueCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class GetQueueAttributesCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class GetQueueAttributesCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_GetQueueAttributesCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_GetQueueAttributesCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.GetQueueAttributesCommand = GetQueueAttributesCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class GetQueueUrlCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class GetQueueUrlCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_GetQueueUrlCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_GetQueueUrlCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.GetQueueUrlCommand = GetQueueUrlCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class ListDeadLetterSourceQueuesCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class ListDeadLetterSourceQueuesCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_ListDeadLetterSourceQueuesCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_ListDeadLetterSourceQueuesCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.ListDeadLetterSourceQueuesCommand = ListDeadLetterSourceQueuesCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class ListMessageMoveTasksCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class ListMessageMoveTasksCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_ListMessageMoveTasksCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_ListMessageMoveTasksCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.ListMessageMoveTasksCommand = ListMessageMoveTasksCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class ListQueueTagsCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class ListQueueTagsCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_ListQueueTagsCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_ListQueueTagsCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.ListQueueTagsCommand = ListQueueTagsCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class ListQueuesCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class ListQueuesCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_ListQueuesCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_ListQueuesCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.ListQueuesCommand = ListQueuesCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class PurgeQueueCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class PurgeQueueCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_PurgeQueueCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_PurgeQueueCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.PurgeQueueCommand = PurgeQueueCommand;
|
|
@@ -7,7 +7,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
9
|
const types_1 = require("@smithy/types");
|
|
10
|
-
const
|
|
10
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
11
11
|
class ReceiveMessageCommand extends smithy_client_1.Command {
|
|
12
12
|
static getEndpointParameterInstructions() {
|
|
13
13
|
return {
|
|
@@ -44,10 +44,10 @@ class ReceiveMessageCommand extends smithy_client_1.Command {
|
|
|
44
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
45
45
|
}
|
|
46
46
|
serialize(input, context) {
|
|
47
|
-
return (0,
|
|
47
|
+
return (0, Aws_json1_0_1.se_ReceiveMessageCommand)(input, context);
|
|
48
48
|
}
|
|
49
49
|
deserialize(output, context) {
|
|
50
|
-
return (0,
|
|
50
|
+
return (0, Aws_json1_0_1.de_ReceiveMessageCommand)(output, context);
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
exports.ReceiveMessageCommand = ReceiveMessageCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class RemovePermissionCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class RemovePermissionCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_RemovePermissionCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_RemovePermissionCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.RemovePermissionCommand = RemovePermissionCommand;
|
|
@@ -7,7 +7,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
9
|
const types_1 = require("@smithy/types");
|
|
10
|
-
const
|
|
10
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
11
11
|
class SendMessageBatchCommand extends smithy_client_1.Command {
|
|
12
12
|
static getEndpointParameterInstructions() {
|
|
13
13
|
return {
|
|
@@ -44,10 +44,10 @@ class SendMessageBatchCommand extends smithy_client_1.Command {
|
|
|
44
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
45
45
|
}
|
|
46
46
|
serialize(input, context) {
|
|
47
|
-
return (0,
|
|
47
|
+
return (0, Aws_json1_0_1.se_SendMessageBatchCommand)(input, context);
|
|
48
48
|
}
|
|
49
49
|
deserialize(output, context) {
|
|
50
|
-
return (0,
|
|
50
|
+
return (0, Aws_json1_0_1.de_SendMessageBatchCommand)(output, context);
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
exports.SendMessageBatchCommand = SendMessageBatchCommand;
|
|
@@ -7,7 +7,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
9
|
const types_1 = require("@smithy/types");
|
|
10
|
-
const
|
|
10
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
11
11
|
class SendMessageCommand extends smithy_client_1.Command {
|
|
12
12
|
static getEndpointParameterInstructions() {
|
|
13
13
|
return {
|
|
@@ -44,10 +44,10 @@ class SendMessageCommand extends smithy_client_1.Command {
|
|
|
44
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
45
45
|
}
|
|
46
46
|
serialize(input, context) {
|
|
47
|
-
return (0,
|
|
47
|
+
return (0, Aws_json1_0_1.se_SendMessageCommand)(input, context);
|
|
48
48
|
}
|
|
49
49
|
deserialize(output, context) {
|
|
50
|
-
return (0,
|
|
50
|
+
return (0, Aws_json1_0_1.de_SendMessageCommand)(output, context);
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
exports.SendMessageCommand = SendMessageCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class SetQueueAttributesCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class SetQueueAttributesCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_SetQueueAttributesCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_SetQueueAttributesCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.SetQueueAttributesCommand = SetQueueAttributesCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class StartMessageMoveTaskCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class StartMessageMoveTaskCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_StartMessageMoveTaskCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_StartMessageMoveTaskCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.StartMessageMoveTaskCommand = StartMessageMoveTaskCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class TagQueueCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class TagQueueCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_TagQueueCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_TagQueueCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.TagQueueCommand = TagQueueCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
10
|
class UntagQueueCommand extends smithy_client_1.Command {
|
|
11
11
|
static getEndpointParameterInstructions() {
|
|
12
12
|
return {
|
|
@@ -42,10 +42,10 @@ class UntagQueueCommand extends smithy_client_1.Command {
|
|
|
42
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
43
|
}
|
|
44
44
|
serialize(input, context) {
|
|
45
|
-
return (0,
|
|
45
|
+
return (0, Aws_json1_0_1.se_UntagQueueCommand)(input, context);
|
|
46
46
|
}
|
|
47
47
|
deserialize(output, context) {
|
|
48
|
-
return (0,
|
|
48
|
+
return (0, Aws_json1_0_1.de_UntagQueueCommand)(output, context);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
exports.UntagQueueCommand = UntagQueueCommand;
|