@aws-sdk/client-sqs 3.948.0 → 3.953.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 (43) hide show
  1. package/dist-cjs/index.js +378 -289
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/AddPermissionCommand.js +2 -2
  4. package/dist-es/commands/CancelMessageMoveTaskCommand.js +2 -2
  5. package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +2 -2
  6. package/dist-es/commands/ChangeMessageVisibilityCommand.js +2 -2
  7. package/dist-es/commands/CreateQueueCommand.js +2 -2
  8. package/dist-es/commands/DeleteMessageBatchCommand.js +2 -2
  9. package/dist-es/commands/DeleteMessageCommand.js +2 -2
  10. package/dist-es/commands/DeleteQueueCommand.js +2 -2
  11. package/dist-es/commands/GetQueueAttributesCommand.js +2 -2
  12. package/dist-es/commands/GetQueueUrlCommand.js +2 -2
  13. package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +2 -2
  14. package/dist-es/commands/ListMessageMoveTasksCommand.js +2 -2
  15. package/dist-es/commands/ListQueueTagsCommand.js +2 -2
  16. package/dist-es/commands/ListQueuesCommand.js +2 -2
  17. package/dist-es/commands/PurgeQueueCommand.js +2 -2
  18. package/dist-es/commands/ReceiveMessageCommand.js +2 -2
  19. package/dist-es/commands/RemovePermissionCommand.js +2 -2
  20. package/dist-es/commands/SendMessageBatchCommand.js +2 -2
  21. package/dist-es/commands/SendMessageCommand.js +2 -2
  22. package/dist-es/commands/SetQueueAttributesCommand.js +2 -2
  23. package/dist-es/commands/StartMessageMoveTaskCommand.js +2 -2
  24. package/dist-es/commands/TagQueueCommand.js +2 -2
  25. package/dist-es/commands/UntagQueueCommand.js +2 -2
  26. package/dist-es/index.js +1 -0
  27. package/dist-es/runtimeConfig.shared.js +7 -6
  28. package/dist-es/schemas/schemas_0.js +189 -200
  29. package/dist-types/SQSClient.d.ts +1 -10
  30. package/dist-types/index.d.ts +1 -0
  31. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  32. package/dist-types/runtimeConfig.d.ts +6 -2
  33. package/dist-types/runtimeConfig.native.d.ts +6 -2
  34. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  35. package/dist-types/schemas/schemas_0.d.ts +101 -125
  36. package/dist-types/ts3.4/SQSClient.d.ts +0 -4
  37. package/dist-types/ts3.4/index.d.ts +1 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +100 -126
  43. package/package.json +36 -36
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ??
30
- new protocols_1.AwsJson1_0Protocol({
31
- defaultNamespace: "com.amazonaws.sqs",
32
- serviceTarget: "AmazonSQS",
33
- awsQueryCompatible: true,
34
- }),
29
+ protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.sqs",
32
+ version: "2012-11-05",
33
+ serviceTarget: "AmazonSQS",
34
+ awsQueryCompatible: true,
35
+ },
35
36
  serviceId: config?.serviceId ?? "SQS",
36
37
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
37
38
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AddPermission } from "../schemas/schemas_0";
4
+ import { AddPermission$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AddPermissionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AddPermissionCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "AddPermission", {})
13
13
  .n("SQSClient", "AddPermissionCommand")
14
- .sc(AddPermission)
14
+ .sc(AddPermission$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CancelMessageMoveTask } from "../schemas/schemas_0";
4
+ import { CancelMessageMoveTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CancelMessageMoveTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CancelMessageMoveTaskCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "CancelMessageMoveTask", {})
13
13
  .n("SQSClient", "CancelMessageMoveTaskCommand")
14
- .sc(CancelMessageMoveTask)
14
+ .sc(CancelMessageMoveTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ChangeMessageVisibilityBatch } from "../schemas/schemas_0";
4
+ import { ChangeMessageVisibilityBatch$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ChangeMessageVisibilityBatchCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ChangeMessageVisibilityBatchCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "ChangeMessageVisibilityBatch", {})
13
13
  .n("SQSClient", "ChangeMessageVisibilityBatchCommand")
14
- .sc(ChangeMessageVisibilityBatch)
14
+ .sc(ChangeMessageVisibilityBatch$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ChangeMessageVisibility } from "../schemas/schemas_0";
4
+ import { ChangeMessageVisibility$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ChangeMessageVisibilityCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ChangeMessageVisibilityCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "ChangeMessageVisibility", {})
13
13
  .n("SQSClient", "ChangeMessageVisibilityCommand")
14
- .sc(ChangeMessageVisibility)
14
+ .sc(ChangeMessageVisibility$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateQueue } from "../schemas/schemas_0";
4
+ import { CreateQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateQueueCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "CreateQueue", {})
13
13
  .n("SQSClient", "CreateQueueCommand")
14
- .sc(CreateQueue)
14
+ .sc(CreateQueue$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteMessageBatch } from "../schemas/schemas_0";
4
+ import { DeleteMessageBatch$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteMessageBatchCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteMessageBatchCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "DeleteMessageBatch", {})
13
13
  .n("SQSClient", "DeleteMessageBatchCommand")
14
- .sc(DeleteMessageBatch)
14
+ .sc(DeleteMessageBatch$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteMessage } from "../schemas/schemas_0";
4
+ import { DeleteMessage$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteMessageCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteMessageCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "DeleteMessage", {})
13
13
  .n("SQSClient", "DeleteMessageCommand")
14
- .sc(DeleteMessage)
14
+ .sc(DeleteMessage$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteQueue } from "../schemas/schemas_0";
4
+ import { DeleteQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteQueueCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "DeleteQueue", {})
13
13
  .n("SQSClient", "DeleteQueueCommand")
14
- .sc(DeleteQueue)
14
+ .sc(DeleteQueue$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetQueueAttributes } from "../schemas/schemas_0";
4
+ import { GetQueueAttributes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetQueueAttributesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetQueueAttributesCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "GetQueueAttributes", {})
13
13
  .n("SQSClient", "GetQueueAttributesCommand")
14
- .sc(GetQueueAttributes)
14
+ .sc(GetQueueAttributes$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetQueueUrl } from "../schemas/schemas_0";
4
+ import { GetQueueUrl$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetQueueUrlCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetQueueUrlCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "GetQueueUrl", {})
13
13
  .n("SQSClient", "GetQueueUrlCommand")
14
- .sc(GetQueueUrl)
14
+ .sc(GetQueueUrl$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListDeadLetterSourceQueues } from "../schemas/schemas_0";
4
+ import { ListDeadLetterSourceQueues$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDeadLetterSourceQueuesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDeadLetterSourceQueuesCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "ListDeadLetterSourceQueues", {})
13
13
  .n("SQSClient", "ListDeadLetterSourceQueuesCommand")
14
- .sc(ListDeadLetterSourceQueues)
14
+ .sc(ListDeadLetterSourceQueues$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListMessageMoveTasks } from "../schemas/schemas_0";
4
+ import { ListMessageMoveTasks$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMessageMoveTasksCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMessageMoveTasksCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "ListMessageMoveTasks", {})
13
13
  .n("SQSClient", "ListMessageMoveTasksCommand")
14
- .sc(ListMessageMoveTasks)
14
+ .sc(ListMessageMoveTasks$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListQueueTags } from "../schemas/schemas_0";
4
+ import { ListQueueTags$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListQueueTagsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListQueueTagsCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "ListQueueTags", {})
13
13
  .n("SQSClient", "ListQueueTagsCommand")
14
- .sc(ListQueueTags)
14
+ .sc(ListQueueTags$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListQueues } from "../schemas/schemas_0";
4
+ import { ListQueues$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListQueuesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListQueuesCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "ListQueues", {})
13
13
  .n("SQSClient", "ListQueuesCommand")
14
- .sc(ListQueues)
14
+ .sc(ListQueues$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PurgeQueue } from "../schemas/schemas_0";
4
+ import { PurgeQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PurgeQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PurgeQueueCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "PurgeQueue", {})
13
13
  .n("SQSClient", "PurgeQueueCommand")
14
- .sc(PurgeQueue)
14
+ .sc(PurgeQueue$)
15
15
  .build() {
16
16
  }
@@ -2,7 +2,7 @@ import { getReceiveMessagePlugin } from "@aws-sdk/middleware-sdk-sqs";
2
2
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { ReceiveMessage } from "../schemas/schemas_0";
5
+ import { ReceiveMessage$ } from "../schemas/schemas_0";
6
6
  export { $Command };
7
7
  export class ReceiveMessageCommand extends $Command
8
8
  .classBuilder()
@@ -12,6 +12,6 @@ export class ReceiveMessageCommand extends $Command
12
12
  })
13
13
  .s("AmazonSQS", "ReceiveMessage", {})
14
14
  .n("SQSClient", "ReceiveMessageCommand")
15
- .sc(ReceiveMessage)
15
+ .sc(ReceiveMessage$)
16
16
  .build() {
17
17
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RemovePermission } from "../schemas/schemas_0";
4
+ import { RemovePermission$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RemovePermissionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RemovePermissionCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "RemovePermission", {})
13
13
  .n("SQSClient", "RemovePermissionCommand")
14
- .sc(RemovePermission)
14
+ .sc(RemovePermission$)
15
15
  .build() {
16
16
  }
@@ -2,7 +2,7 @@ import { getSendMessageBatchPlugin } from "@aws-sdk/middleware-sdk-sqs";
2
2
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { SendMessageBatch } from "../schemas/schemas_0";
5
+ import { SendMessageBatch$ } from "../schemas/schemas_0";
6
6
  export { $Command };
7
7
  export class SendMessageBatchCommand extends $Command
8
8
  .classBuilder()
@@ -12,6 +12,6 @@ export class SendMessageBatchCommand extends $Command
12
12
  })
13
13
  .s("AmazonSQS", "SendMessageBatch", {})
14
14
  .n("SQSClient", "SendMessageBatchCommand")
15
- .sc(SendMessageBatch)
15
+ .sc(SendMessageBatch$)
16
16
  .build() {
17
17
  }
@@ -2,7 +2,7 @@ import { getSendMessagePlugin } from "@aws-sdk/middleware-sdk-sqs";
2
2
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { SendMessage } from "../schemas/schemas_0";
5
+ import { SendMessage$ } from "../schemas/schemas_0";
6
6
  export { $Command };
7
7
  export class SendMessageCommand extends $Command
8
8
  .classBuilder()
@@ -12,6 +12,6 @@ export class SendMessageCommand extends $Command
12
12
  })
13
13
  .s("AmazonSQS", "SendMessage", {})
14
14
  .n("SQSClient", "SendMessageCommand")
15
- .sc(SendMessage)
15
+ .sc(SendMessage$)
16
16
  .build() {
17
17
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SetQueueAttributes } from "../schemas/schemas_0";
4
+ import { SetQueueAttributes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SetQueueAttributesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SetQueueAttributesCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "SetQueueAttributes", {})
13
13
  .n("SQSClient", "SetQueueAttributesCommand")
14
- .sc(SetQueueAttributes)
14
+ .sc(SetQueueAttributes$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartMessageMoveTask } from "../schemas/schemas_0";
4
+ import { StartMessageMoveTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartMessageMoveTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartMessageMoveTaskCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "StartMessageMoveTask", {})
13
13
  .n("SQSClient", "StartMessageMoveTaskCommand")
14
- .sc(StartMessageMoveTask)
14
+ .sc(StartMessageMoveTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagQueue } from "../schemas/schemas_0";
4
+ import { TagQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagQueueCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "TagQueue", {})
13
13
  .n("SQSClient", "TagQueueCommand")
14
- .sc(TagQueue)
14
+ .sc(TagQueue$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagQueue } from "../schemas/schemas_0";
4
+ import { UntagQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagQueueCommand extends $Command
11
11
  })
12
12
  .s("AmazonSQS", "UntagQueue", {})
13
13
  .n("SQSClient", "UntagQueueCommand")
14
- .sc(UntagQueue)
14
+ .sc(UntagQueue$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./SQSClient";
2
2
  export * from "./SQS";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ??
27
- new AwsJson1_0Protocol({
28
- defaultNamespace: "com.amazonaws.sqs",
29
- serviceTarget: "AmazonSQS",
30
- awsQueryCompatible: true,
31
- }),
26
+ protocol: config?.protocol ?? AwsJson1_0Protocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.sqs",
29
+ version: "2012-11-05",
30
+ serviceTarget: "AmazonSQS",
31
+ awsQueryCompatible: true,
32
+ },
32
33
  serviceId: config?.serviceId ?? "SQS",
33
34
  urlParser: config?.urlParser ?? parseUrl,
34
35
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,