@aws-sdk/client-sqs 3.490.0 → 3.495.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.
Files changed (40) hide show
  1. package/dist-cjs/SQS.js +1 -57
  2. package/dist-cjs/SQSClient.js +1 -56
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +1 -43
  4. package/dist-cjs/commands/AddPermissionCommand.js +1 -28
  5. package/dist-cjs/commands/CancelMessageMoveTaskCommand.js +1 -28
  6. package/dist-cjs/commands/ChangeMessageVisibilityBatchCommand.js +1 -28
  7. package/dist-cjs/commands/ChangeMessageVisibilityCommand.js +1 -28
  8. package/dist-cjs/commands/CreateQueueCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteMessageBatchCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteMessageCommand.js +1 -28
  11. package/dist-cjs/commands/DeleteQueueCommand.js +1 -28
  12. package/dist-cjs/commands/GetQueueAttributesCommand.js +1 -28
  13. package/dist-cjs/commands/GetQueueUrlCommand.js +1 -28
  14. package/dist-cjs/commands/ListDeadLetterSourceQueuesCommand.js +1 -28
  15. package/dist-cjs/commands/ListMessageMoveTasksCommand.js +1 -28
  16. package/dist-cjs/commands/ListQueueTagsCommand.js +1 -28
  17. package/dist-cjs/commands/ListQueuesCommand.js +1 -28
  18. package/dist-cjs/commands/PurgeQueueCommand.js +1 -28
  19. package/dist-cjs/commands/ReceiveMessageCommand.js +1 -30
  20. package/dist-cjs/commands/RemovePermissionCommand.js +1 -28
  21. package/dist-cjs/commands/SendMessageBatchCommand.js +1 -30
  22. package/dist-cjs/commands/SendMessageCommand.js +1 -30
  23. package/dist-cjs/commands/SetQueueAttributesCommand.js +1 -28
  24. package/dist-cjs/commands/StartMessageMoveTaskCommand.js +1 -28
  25. package/dist-cjs/commands/TagQueueCommand.js +1 -28
  26. package/dist-cjs/commands/UntagQueueCommand.js +1 -28
  27. package/dist-cjs/commands/index.js +1 -26
  28. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  29. package/dist-cjs/extensionConfiguration.js +1 -2
  30. package/dist-cjs/index.js +3223 -11
  31. package/dist-cjs/models/SQSServiceException.js +1 -12
  32. package/dist-cjs/models/index.js +1 -4
  33. package/dist-cjs/models/models_0.js +1 -406
  34. package/dist-cjs/pagination/Interfaces.js +1 -2
  35. package/dist-cjs/pagination/ListDeadLetterSourceQueuesPaginator.js +1 -7
  36. package/dist-cjs/pagination/ListQueuesPaginator.js +1 -7
  37. package/dist-cjs/pagination/index.js +1 -6
  38. package/dist-cjs/protocols/Aws_json1_0.js +1 -2025
  39. package/dist-cjs/runtimeExtensions.js +1 -25
  40. package/package.json +42 -42
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RemovePermissionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class RemovePermissionCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmazonSQS", "RemovePermission", {})
22
- .n("SQSClient", "RemovePermissionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_RemovePermissionCommand)
25
- .de(Aws_json1_0_1.de_RemovePermissionCommand)
26
- .build() {
27
- }
28
- exports.RemovePermissionCommand = RemovePermissionCommand;
1
+ module.exports = require("../index.js");
@@ -1,30 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SendMessageBatchCommand = exports.$Command = void 0;
4
- const middleware_sdk_sqs_1 = require("@aws-sdk/middleware-sdk-sqs");
5
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
6
- const middleware_serde_1 = require("@smithy/middleware-serde");
7
- const smithy_client_1 = require("@smithy/smithy-client");
8
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
9
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
10
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
11
- class SendMessageBatchCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- (0, middleware_sdk_sqs_1.getSendMessageBatchPlugin)(config),
21
- ];
22
- })
23
- .s("AmazonSQS", "SendMessageBatch", {})
24
- .n("SQSClient", "SendMessageBatchCommand")
25
- .f(void 0, void 0)
26
- .ser(Aws_json1_0_1.se_SendMessageBatchCommand)
27
- .de(Aws_json1_0_1.de_SendMessageBatchCommand)
28
- .build() {
29
- }
30
- exports.SendMessageBatchCommand = SendMessageBatchCommand;
1
+ module.exports = require("../index.js");
@@ -1,30 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SendMessageCommand = exports.$Command = void 0;
4
- const middleware_sdk_sqs_1 = require("@aws-sdk/middleware-sdk-sqs");
5
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
6
- const middleware_serde_1 = require("@smithy/middleware-serde");
7
- const smithy_client_1 = require("@smithy/smithy-client");
8
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
9
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
10
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
11
- class SendMessageCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- (0, middleware_sdk_sqs_1.getSendMessagePlugin)(config),
21
- ];
22
- })
23
- .s("AmazonSQS", "SendMessage", {})
24
- .n("SQSClient", "SendMessageCommand")
25
- .f(void 0, void 0)
26
- .ser(Aws_json1_0_1.se_SendMessageCommand)
27
- .de(Aws_json1_0_1.de_SendMessageCommand)
28
- .build() {
29
- }
30
- exports.SendMessageCommand = SendMessageCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SetQueueAttributesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class SetQueueAttributesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmazonSQS", "SetQueueAttributes", {})
22
- .n("SQSClient", "SetQueueAttributesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_SetQueueAttributesCommand)
25
- .de(Aws_json1_0_1.de_SetQueueAttributesCommand)
26
- .build() {
27
- }
28
- exports.SetQueueAttributesCommand = SetQueueAttributesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StartMessageMoveTaskCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class StartMessageMoveTaskCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmazonSQS", "StartMessageMoveTask", {})
22
- .n("SQSClient", "StartMessageMoveTaskCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_StartMessageMoveTaskCommand)
25
- .de(Aws_json1_0_1.de_StartMessageMoveTaskCommand)
26
- .build() {
27
- }
28
- exports.StartMessageMoveTaskCommand = StartMessageMoveTaskCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagQueueCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class TagQueueCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmazonSQS", "TagQueue", {})
22
- .n("SQSClient", "TagQueueCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_TagQueueCommand)
25
- .de(Aws_json1_0_1.de_TagQueueCommand)
26
- .build() {
27
- }
28
- exports.TagQueueCommand = TagQueueCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagQueueCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UntagQueueCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmazonSQS", "UntagQueue", {})
22
- .n("SQSClient", "UntagQueueCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UntagQueueCommand)
25
- .de(Aws_json1_0_1.de_UntagQueueCommand)
26
- .build() {
27
- }
28
- exports.UntagQueueCommand = UntagQueueCommand;
1
+ module.exports = require("../index.js");
@@ -1,26 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./AddPermissionCommand"), exports);
5
- tslib_1.__exportStar(require("./CancelMessageMoveTaskCommand"), exports);
6
- tslib_1.__exportStar(require("./ChangeMessageVisibilityBatchCommand"), exports);
7
- tslib_1.__exportStar(require("./ChangeMessageVisibilityCommand"), exports);
8
- tslib_1.__exportStar(require("./CreateQueueCommand"), exports);
9
- tslib_1.__exportStar(require("./DeleteMessageBatchCommand"), exports);
10
- tslib_1.__exportStar(require("./DeleteMessageCommand"), exports);
11
- tslib_1.__exportStar(require("./DeleteQueueCommand"), exports);
12
- tslib_1.__exportStar(require("./GetQueueAttributesCommand"), exports);
13
- tslib_1.__exportStar(require("./GetQueueUrlCommand"), exports);
14
- tslib_1.__exportStar(require("./ListDeadLetterSourceQueuesCommand"), exports);
15
- tslib_1.__exportStar(require("./ListMessageMoveTasksCommand"), exports);
16
- tslib_1.__exportStar(require("./ListQueueTagsCommand"), exports);
17
- tslib_1.__exportStar(require("./ListQueuesCommand"), exports);
18
- tslib_1.__exportStar(require("./PurgeQueueCommand"), exports);
19
- tslib_1.__exportStar(require("./ReceiveMessageCommand"), exports);
20
- tslib_1.__exportStar(require("./RemovePermissionCommand"), exports);
21
- tslib_1.__exportStar(require("./SendMessageBatchCommand"), exports);
22
- tslib_1.__exportStar(require("./SendMessageCommand"), exports);
23
- tslib_1.__exportStar(require("./SetQueueAttributesCommand"), exports);
24
- tslib_1.__exportStar(require("./StartMessageMoveTaskCommand"), exports);
25
- tslib_1.__exportStar(require("./TagQueueCommand"), exports);
26
- tslib_1.__exportStar(require("./UntagQueueCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
- useFipsEndpoint: options.useFipsEndpoint ?? false,
9
- defaultSigningName: "sqs",
10
- };
11
- };
12
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
- exports.commonParams = {
14
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
- Endpoint: { type: "builtInParams", name: "endpoint" },
16
- Region: { type: "builtInParams", name: "region" },
17
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");