@aws-sdk/client-sqs 3.193.0 → 3.194.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 (112) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/SQSClient.js +11 -8
  3. package/dist-cjs/commands/AddPermissionCommand.js +10 -0
  4. package/dist-cjs/commands/ChangeMessageVisibilityBatchCommand.js +10 -0
  5. package/dist-cjs/commands/ChangeMessageVisibilityCommand.js +10 -0
  6. package/dist-cjs/commands/CreateQueueCommand.js +10 -0
  7. package/dist-cjs/commands/DeleteMessageBatchCommand.js +10 -0
  8. package/dist-cjs/commands/DeleteMessageCommand.js +10 -0
  9. package/dist-cjs/commands/DeleteQueueCommand.js +10 -0
  10. package/dist-cjs/commands/GetQueueAttributesCommand.js +10 -0
  11. package/dist-cjs/commands/GetQueueUrlCommand.js +10 -0
  12. package/dist-cjs/commands/ListDeadLetterSourceQueuesCommand.js +10 -0
  13. package/dist-cjs/commands/ListQueueTagsCommand.js +10 -0
  14. package/dist-cjs/commands/ListQueuesCommand.js +10 -0
  15. package/dist-cjs/commands/PurgeQueueCommand.js +10 -0
  16. package/dist-cjs/commands/ReceiveMessageCommand.js +10 -0
  17. package/dist-cjs/commands/RemovePermissionCommand.js +10 -0
  18. package/dist-cjs/commands/SendMessageBatchCommand.js +10 -0
  19. package/dist-cjs/commands/SendMessageCommand.js +10 -0
  20. package/dist-cjs/commands/SetQueueAttributesCommand.js +10 -0
  21. package/dist-cjs/commands/TagQueueCommand.js +10 -0
  22. package/dist-cjs/commands/UntagQueueCommand.js +10 -0
  23. package/dist-cjs/endpoint/EndpointParameters.js +13 -0
  24. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  25. package/dist-cjs/endpoint/ruleset.js +343 -0
  26. package/dist-cjs/runtimeConfig.shared.js +3 -3
  27. package/dist-es/SQSClient.js +12 -9
  28. package/dist-es/commands/AddPermissionCommand.js +10 -0
  29. package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +10 -0
  30. package/dist-es/commands/ChangeMessageVisibilityCommand.js +10 -0
  31. package/dist-es/commands/CreateQueueCommand.js +10 -0
  32. package/dist-es/commands/DeleteMessageBatchCommand.js +10 -0
  33. package/dist-es/commands/DeleteMessageCommand.js +10 -0
  34. package/dist-es/commands/DeleteQueueCommand.js +10 -0
  35. package/dist-es/commands/GetQueueAttributesCommand.js +10 -0
  36. package/dist-es/commands/GetQueueUrlCommand.js +10 -0
  37. package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +10 -0
  38. package/dist-es/commands/ListQueueTagsCommand.js +10 -0
  39. package/dist-es/commands/ListQueuesCommand.js +10 -0
  40. package/dist-es/commands/PurgeQueueCommand.js +10 -0
  41. package/dist-es/commands/ReceiveMessageCommand.js +10 -0
  42. package/dist-es/commands/RemovePermissionCommand.js +10 -0
  43. package/dist-es/commands/SendMessageBatchCommand.js +10 -0
  44. package/dist-es/commands/SendMessageCommand.js +10 -0
  45. package/dist-es/commands/SetQueueAttributesCommand.js +10 -0
  46. package/dist-es/commands/TagQueueCommand.js +10 -0
  47. package/dist-es/commands/UntagQueueCommand.js +10 -0
  48. package/dist-es/endpoint/EndpointParameters.js +8 -0
  49. package/dist-es/endpoint/endpointResolver.js +8 -0
  50. package/dist-es/endpoint/ruleset.js +340 -0
  51. package/dist-es/runtimeConfig.shared.js +2 -2
  52. package/dist-types/SQSClient.d.ts +6 -9
  53. package/dist-types/commands/AddPermissionCommand.d.ts +2 -0
  54. package/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +2 -0
  55. package/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +2 -0
  56. package/dist-types/commands/CreateQueueCommand.d.ts +2 -0
  57. package/dist-types/commands/DeleteMessageBatchCommand.d.ts +2 -0
  58. package/dist-types/commands/DeleteMessageCommand.d.ts +2 -0
  59. package/dist-types/commands/DeleteQueueCommand.d.ts +2 -0
  60. package/dist-types/commands/GetQueueAttributesCommand.d.ts +2 -0
  61. package/dist-types/commands/GetQueueUrlCommand.d.ts +2 -0
  62. package/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +2 -0
  63. package/dist-types/commands/ListQueueTagsCommand.d.ts +2 -0
  64. package/dist-types/commands/ListQueuesCommand.d.ts +2 -0
  65. package/dist-types/commands/PurgeQueueCommand.d.ts +2 -0
  66. package/dist-types/commands/ReceiveMessageCommand.d.ts +2 -0
  67. package/dist-types/commands/RemovePermissionCommand.d.ts +2 -0
  68. package/dist-types/commands/SendMessageBatchCommand.d.ts +2 -0
  69. package/dist-types/commands/SendMessageCommand.d.ts +2 -0
  70. package/dist-types/commands/SetQueueAttributesCommand.d.ts +2 -0
  71. package/dist-types/commands/TagQueueCommand.d.ts +2 -0
  72. package/dist-types/commands/UntagQueueCommand.d.ts +2 -0
  73. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  74. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  75. package/dist-types/endpoint/ruleset.d.ts +2 -0
  76. package/dist-types/runtimeConfig.browser.d.ts +4 -2
  77. package/dist-types/runtimeConfig.d.ts +4 -2
  78. package/dist-types/runtimeConfig.native.d.ts +4 -2
  79. package/dist-types/runtimeConfig.shared.d.ts +3 -1
  80. package/dist-types/ts3.4/SQSClient.d.ts +15 -8
  81. package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +2 -0
  82. package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +2 -0
  83. package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +2 -0
  84. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +2 -0
  85. package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +2 -0
  86. package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +2 -0
  87. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +2 -0
  88. package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +2 -0
  89. package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +2 -0
  90. package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +2 -0
  91. package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +2 -0
  92. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +2 -0
  93. package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +2 -0
  94. package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +2 -0
  95. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +2 -0
  96. package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +2 -0
  97. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +2 -0
  98. package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +2 -0
  99. package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +2 -0
  100. package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +2 -0
  101. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
  102. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  103. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  104. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
  105. package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
  106. package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
  107. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
  108. package/package.json +4 -2
  109. package/dist-cjs/endpoints.js +0 -187
  110. package/dist-es/endpoints.js +0 -183
  111. package/dist-types/endpoints.d.ts +0 -2
  112. package/dist-types/ts3.4/endpoints.d.ts +0 -2
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ChangeMessageVisibilityBatchRequest, ChangeMessageVisibilityBatchResult } from "../models/models_0";
@@ -39,6 +40,7 @@ export interface ChangeMessageVisibilityBatchCommandOutput extends ChangeMessage
39
40
  */
40
41
  export declare class ChangeMessageVisibilityBatchCommand extends $Command<ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput, SQSClientResolvedConfig> {
41
42
  readonly input: ChangeMessageVisibilityBatchCommandInput;
43
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
42
44
  constructor(input: ChangeMessageVisibilityBatchCommandInput);
43
45
  /**
44
46
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ChangeMessageVisibilityRequest } from "../models/models_0";
@@ -58,6 +59,7 @@ export interface ChangeMessageVisibilityCommandOutput extends __MetadataBearer {
58
59
  */
59
60
  export declare class ChangeMessageVisibilityCommand extends $Command<ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput, SQSClientResolvedConfig> {
60
61
  readonly input: ChangeMessageVisibilityCommandInput;
62
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
63
  constructor(input: ChangeMessageVisibilityCommandInput);
62
64
  /**
63
65
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { CreateQueueRequest, CreateQueueResult } from "../models/models_0";
@@ -76,6 +77,7 @@ export interface CreateQueueCommandOutput extends CreateQueueResult, __MetadataB
76
77
  */
77
78
  export declare class CreateQueueCommand extends $Command<CreateQueueCommandInput, CreateQueueCommandOutput, SQSClientResolvedConfig> {
78
79
  readonly input: CreateQueueCommandInput;
80
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
81
  constructor(input: CreateQueueCommandInput);
80
82
  /**
81
83
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DeleteMessageBatchRequest, DeleteMessageBatchResult } from "../models/models_0";
@@ -36,6 +37,7 @@ export interface DeleteMessageBatchCommandOutput extends DeleteMessageBatchResul
36
37
  */
37
38
  export declare class DeleteMessageBatchCommand extends $Command<DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput, SQSClientResolvedConfig> {
38
39
  readonly input: DeleteMessageBatchCommandInput;
40
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
39
41
  constructor(input: DeleteMessageBatchCommandInput);
40
42
  /**
41
43
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DeleteMessageRequest } from "../models/models_0";
@@ -44,6 +45,7 @@ export interface DeleteMessageCommandOutput extends __MetadataBearer {
44
45
  */
45
46
  export declare class DeleteMessageCommand extends $Command<DeleteMessageCommandInput, DeleteMessageCommandOutput, SQSClientResolvedConfig> {
46
47
  readonly input: DeleteMessageCommandInput;
48
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
49
  constructor(input: DeleteMessageCommandInput);
48
50
  /**
49
51
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DeleteQueueRequest } from "../models/models_0";
@@ -39,6 +40,7 @@ export interface DeleteQueueCommandOutput extends __MetadataBearer {
39
40
  */
40
41
  export declare class DeleteQueueCommand extends $Command<DeleteQueueCommandInput, DeleteQueueCommandOutput, SQSClientResolvedConfig> {
41
42
  readonly input: DeleteQueueCommandInput;
43
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
42
44
  constructor(input: DeleteQueueCommandInput);
43
45
  /**
44
46
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { GetQueueAttributesRequest, GetQueueAttributesResult } from "../models/models_0";
@@ -28,6 +29,7 @@ export interface GetQueueAttributesCommandOutput extends GetQueueAttributesResul
28
29
  */
29
30
  export declare class GetQueueAttributesCommand extends $Command<GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput, SQSClientResolvedConfig> {
30
31
  readonly input: GetQueueAttributesCommandInput;
32
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
33
  constructor(input: GetQueueAttributesCommandInput);
32
34
  /**
33
35
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { GetQueueUrlRequest, GetQueueUrlResult } from "../models/models_0";
@@ -30,6 +31,7 @@ export interface GetQueueUrlCommandOutput extends GetQueueUrlResult, __MetadataB
30
31
  */
31
32
  export declare class GetQueueUrlCommand extends $Command<GetQueueUrlCommandInput, GetQueueUrlCommandOutput, SQSClientResolvedConfig> {
32
33
  readonly input: GetQueueUrlCommandInput;
34
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
33
35
  constructor(input: GetQueueUrlCommandInput);
34
36
  /**
35
37
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ListDeadLetterSourceQueuesRequest, ListDeadLetterSourceQueuesResult } from "../models/models_0";
@@ -35,6 +36,7 @@ export interface ListDeadLetterSourceQueuesCommandOutput extends ListDeadLetterS
35
36
  */
36
37
  export declare class ListDeadLetterSourceQueuesCommand extends $Command<ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput, SQSClientResolvedConfig> {
37
38
  readonly input: ListDeadLetterSourceQueuesCommandInput;
39
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
38
40
  constructor(input: ListDeadLetterSourceQueuesCommandInput);
39
41
  /**
40
42
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ListQueueTagsRequest, ListQueueTagsResult } from "../models/models_0";
@@ -31,6 +32,7 @@ export interface ListQueueTagsCommandOutput extends ListQueueTagsResult, __Metad
31
32
  */
32
33
  export declare class ListQueueTagsCommand extends $Command<ListQueueTagsCommandInput, ListQueueTagsCommandOutput, SQSClientResolvedConfig> {
33
34
  readonly input: ListQueueTagsCommandInput;
35
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
34
36
  constructor(input: ListQueueTagsCommandInput);
35
37
  /**
36
38
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ListQueuesRequest, ListQueuesResult } from "../models/models_0";
@@ -38,6 +39,7 @@ export interface ListQueuesCommandOutput extends ListQueuesResult, __MetadataBea
38
39
  */
39
40
  export declare class ListQueuesCommand extends $Command<ListQueuesCommandInput, ListQueuesCommandOutput, SQSClientResolvedConfig> {
40
41
  readonly input: ListQueuesCommandInput;
42
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
41
43
  constructor(input: ListQueuesCommandInput);
42
44
  /**
43
45
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { PurgeQueueRequest } from "../models/models_0";
@@ -38,6 +39,7 @@ export interface PurgeQueueCommandOutput extends __MetadataBearer {
38
39
  */
39
40
  export declare class PurgeQueueCommand extends $Command<PurgeQueueCommandInput, PurgeQueueCommandOutput, SQSClientResolvedConfig> {
40
41
  readonly input: PurgeQueueCommandInput;
42
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
41
43
  constructor(input: PurgeQueueCommandInput);
42
44
  /**
43
45
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ReceiveMessageRequest, ReceiveMessageResult } from "../models/models_0";
@@ -60,6 +61,7 @@ export interface ReceiveMessageCommandOutput extends ReceiveMessageResult, __Met
60
61
  */
61
62
  export declare class ReceiveMessageCommand extends $Command<ReceiveMessageCommandInput, ReceiveMessageCommandOutput, SQSClientResolvedConfig> {
62
63
  readonly input: ReceiveMessageCommandInput;
64
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
65
  constructor(input: ReceiveMessageCommandInput);
64
66
  /**
65
67
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { RemovePermissionRequest } from "../models/models_0";
@@ -40,6 +41,7 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
40
41
  */
41
42
  export declare class RemovePermissionCommand extends $Command<RemovePermissionCommandInput, RemovePermissionCommandOutput, SQSClientResolvedConfig> {
42
43
  readonly input: RemovePermissionCommandInput;
44
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
43
45
  constructor(input: RemovePermissionCommandInput);
44
46
  /**
45
47
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { SendMessageBatchRequest, SendMessageBatchResult } from "../models/models_0";
@@ -43,6 +44,7 @@ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, _
43
44
  */
44
45
  export declare class SendMessageBatchCommand extends $Command<SendMessageBatchCommandInput, SendMessageBatchCommandOutput, SQSClientResolvedConfig> {
45
46
  readonly input: SendMessageBatchCommandInput;
47
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
46
48
  constructor(input: SendMessageBatchCommandInput);
47
49
  /**
48
50
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { SendMessageRequest, SendMessageResult } from "../models/models_0";
@@ -32,6 +33,7 @@ export interface SendMessageCommandOutput extends SendMessageResult, __MetadataB
32
33
  */
33
34
  export declare class SendMessageCommand extends $Command<SendMessageCommandInput, SendMessageCommandOutput, SQSClientResolvedConfig> {
34
35
  readonly input: SendMessageCommandInput;
36
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
35
37
  constructor(input: SendMessageCommandInput);
36
38
  /**
37
39
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { SetQueueAttributesRequest } from "../models/models_0";
@@ -41,6 +42,7 @@ export interface SetQueueAttributesCommandOutput extends __MetadataBearer {
41
42
  */
42
43
  export declare class SetQueueAttributesCommand extends $Command<SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput, SQSClientResolvedConfig> {
43
44
  readonly input: SetQueueAttributesCommandInput;
45
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
46
  constructor(input: SetQueueAttributesCommandInput);
45
47
  /**
46
48
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { TagQueueRequest } from "../models/models_0";
@@ -50,6 +51,7 @@ export interface TagQueueCommandOutput extends __MetadataBearer {
50
51
  */
51
52
  export declare class TagQueueCommand extends $Command<TagQueueCommandInput, TagQueueCommandOutput, SQSClientResolvedConfig> {
52
53
  readonly input: TagQueueCommandInput;
54
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
55
  constructor(input: TagQueueCommandInput);
54
56
  /**
55
57
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { UntagQueueRequest } from "../models/models_0";
@@ -31,6 +32,7 @@ export interface UntagQueueCommandOutput extends __MetadataBearer {
31
32
  */
32
33
  export declare class UntagQueueCommand extends $Command<UntagQueueCommandInput, UntagQueueCommandOutput, SQSClientResolvedConfig> {
33
34
  readonly input: UntagQueueCommandInput;
35
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
34
36
  constructor(input: UntagQueueCommandInput);
35
37
  /**
36
38
  * @internal
@@ -0,0 +1,19 @@
1
+ import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
2
+ export interface ClientInputEndpointParameters {
3
+ region?: string | Provider<string>;
4
+ useDualstackEndpoint?: boolean | Provider<boolean>;
5
+ useFipsEndpoint?: boolean | Provider<boolean>;
6
+ endpoint?: string | Provider<string>;
7
+ }
8
+ export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
9
+ defaultSigningName: string;
10
+ };
11
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export interface EndpointParameters extends __EndpointParameters {
15
+ Region?: string;
16
+ UseDualStack?: boolean;
17
+ UseFIPS?: boolean;
18
+ Endpoint?: string;
19
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@aws-sdk/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@aws-sdk/util-endpoints";
2
+ export declare const ruleSet: RuleSetObject;
@@ -27,8 +27,10 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
27
27
  disableHostPrefix: boolean;
28
28
  logger: import("@aws-sdk/types").Logger;
29
29
  serviceId: string;
30
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
31
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
30
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@aws-sdk/types").Logger | undefined;
33
+ }) => import("@aws-sdk/types").EndpointV2;
32
34
  tls?: boolean | undefined;
33
35
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
36
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -28,8 +28,10 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
28
28
  disableHostPrefix: boolean;
29
29
  logger: import("@aws-sdk/types").Logger;
30
30
  serviceId: string;
31
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
32
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
31
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
32
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
33
+ logger?: import("@aws-sdk/types").Logger | undefined;
34
+ }) => import("@aws-sdk/types").EndpointV2;
33
35
  tls?: boolean | undefined;
34
36
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
37
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -23,11 +23,13 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
23
23
  serviceId: string;
24
24
  region: string | import("@aws-sdk/types").Provider<any>;
25
25
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
26
  md5: import("@aws-sdk/types").HashConstructor;
28
27
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
29
28
  defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
30
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
31
33
  tls?: boolean | undefined;
32
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
35
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -6,8 +6,10 @@ import { SQSClientConfig } from "./SQSClient";
6
6
  export declare const getRuntimeConfig: (config: SQSClientConfig) => {
7
7
  apiVersion: string;
8
8
  disableHostPrefix: boolean;
9
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
10
+ logger?: __Logger | undefined;
11
+ }) => import("@aws-sdk/types").EndpointV2;
9
12
  logger: __Logger;
10
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
11
13
  serviceId: string;
12
14
  urlParser: import("@aws-sdk/types").UrlParser;
13
15
  };
@@ -1,9 +1,11 @@
1
1
  import {
2
- EndpointsInputConfig,
3
- EndpointsResolvedConfig,
4
2
  RegionInputConfig,
5
3
  RegionResolvedConfig,
6
4
  } from "@aws-sdk/config-resolver";
5
+ import {
6
+ EndpointInputConfig,
7
+ EndpointResolvedConfig,
8
+ } from "@aws-sdk/middleware-endpoint";
7
9
  import {
8
10
  HostHeaderInputConfig,
9
11
  HostHeaderResolvedConfig,
@@ -37,7 +39,6 @@ import {
37
39
  Logger as __Logger,
38
40
  Provider as __Provider,
39
41
  Provider,
40
- RegionInfoProvider,
41
42
  StreamCollector as __StreamCollector,
42
43
  UrlParser as __UrlParser,
43
44
  UserAgent as __UserAgent,
@@ -122,6 +123,11 @@ import {
122
123
  UntagQueueCommandInput,
123
124
  UntagQueueCommandOutput,
124
125
  } from "./commands/UntagQueueCommand";
126
+ import {
127
+ ClientInputEndpointParameters,
128
+ ClientResolvedEndpointParameters,
129
+ EndpointParameters,
130
+ } from "./endpoint/EndpointParameters";
125
131
  export declare type ServiceInputTypes =
126
132
  | AddPermissionCommandInput
127
133
  | ChangeMessageVisibilityBatchCommandInput
@@ -185,7 +191,6 @@ export interface ClientDefaults
185
191
  serviceId?: string;
186
192
  region?: string | __Provider<string>;
187
193
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
188
- regionInfoProvider?: RegionInfoProvider;
189
194
  md5?: __HashConstructor;
190
195
  defaultUserAgentProvider?: Provider<__UserAgent>;
191
196
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
@@ -195,21 +200,23 @@ declare type SQSClientConfigType = Partial<
195
200
  > &
196
201
  ClientDefaults &
197
202
  RegionInputConfig &
198
- EndpointsInputConfig &
203
+ EndpointInputConfig<EndpointParameters> &
199
204
  RetryInputConfig &
200
205
  HostHeaderInputConfig &
201
206
  AwsAuthInputConfig &
202
- UserAgentInputConfig;
207
+ UserAgentInputConfig &
208
+ ClientInputEndpointParameters;
203
209
  export interface SQSClientConfig extends SQSClientConfigType {}
204
210
  declare type SQSClientResolvedConfigType =
205
211
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
206
212
  Required<ClientDefaults> &
207
213
  RegionResolvedConfig &
208
- EndpointsResolvedConfig &
214
+ EndpointResolvedConfig<EndpointParameters> &
209
215
  RetryResolvedConfig &
210
216
  HostHeaderResolvedConfig &
211
217
  AwsAuthResolvedConfig &
212
- UserAgentResolvedConfig;
218
+ UserAgentResolvedConfig &
219
+ ClientResolvedEndpointParameters;
213
220
  export interface SQSClientResolvedConfig extends SQSClientResolvedConfigType {}
214
221
  export declare class SQSClient extends __Client<
215
222
  __HttpHandlerOptions,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -19,6 +20,7 @@ export declare class AddPermissionCommand extends $Command<
19
20
  SQSClientResolvedConfig
20
21
  > {
21
22
  readonly input: AddPermissionCommandInput;
23
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
22
24
  constructor(input: AddPermissionCommandInput);
23
25
  resolveMiddleware(
24
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class ChangeMessageVisibilityBatchCommand extends $Command<
25
26
  SQSClientResolvedConfig
26
27
  > {
27
28
  readonly input: ChangeMessageVisibilityBatchCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ChangeMessageVisibilityBatchCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ChangeMessageVisibilityCommand extends $Command<
21
22
  SQSClientResolvedConfig
22
23
  > {
23
24
  readonly input: ChangeMessageVisibilityCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ChangeMessageVisibilityCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class CreateQueueCommand extends $Command<
21
22
  SQSClientResolvedConfig
22
23
  > {
23
24
  readonly input: CreateQueueCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: CreateQueueCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class DeleteMessageBatchCommand extends $Command<
25
26
  SQSClientResolvedConfig
26
27
  > {
27
28
  readonly input: DeleteMessageBatchCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DeleteMessageBatchCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -19,6 +20,7 @@ export declare class DeleteMessageCommand extends $Command<
19
20
  SQSClientResolvedConfig
20
21
  > {
21
22
  readonly input: DeleteMessageCommandInput;
23
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
22
24
  constructor(input: DeleteMessageCommandInput);
23
25
  resolveMiddleware(
24
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -19,6 +20,7 @@ export declare class DeleteQueueCommand extends $Command<
19
20
  SQSClientResolvedConfig
20
21
  > {
21
22
  readonly input: DeleteQueueCommandInput;
23
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
22
24
  constructor(input: DeleteQueueCommandInput);
23
25
  resolveMiddleware(
24
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class GetQueueAttributesCommand extends $Command<
25
26
  SQSClientResolvedConfig
26
27
  > {
27
28
  readonly input: GetQueueAttributesCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: GetQueueAttributesCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class GetQueueUrlCommand extends $Command<
21
22
  SQSClientResolvedConfig
22
23
  > {
23
24
  readonly input: GetQueueUrlCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: GetQueueUrlCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class ListDeadLetterSourceQueuesCommand extends $Command<
25
26
  SQSClientResolvedConfig
26
27
  > {
27
28
  readonly input: ListDeadLetterSourceQueuesCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListDeadLetterSourceQueuesCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ListQueueTagsCommand extends $Command<
21
22
  SQSClientResolvedConfig
22
23
  > {
23
24
  readonly input: ListQueueTagsCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ListQueueTagsCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ListQueuesCommand extends $Command<
21
22
  SQSClientResolvedConfig
22
23
  > {
23
24
  readonly input: ListQueuesCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ListQueuesCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -19,6 +20,7 @@ export declare class PurgeQueueCommand extends $Command<
19
20
  SQSClientResolvedConfig
20
21
  > {
21
22
  readonly input: PurgeQueueCommandInput;
23
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
22
24
  constructor(input: PurgeQueueCommandInput);
23
25
  resolveMiddleware(
24
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class ReceiveMessageCommand extends $Command<
24
25
  SQSClientResolvedConfig
25
26
  > {
26
27
  readonly input: ReceiveMessageCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: ReceiveMessageCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -19,6 +20,7 @@ export declare class RemovePermissionCommand extends $Command<
19
20
  SQSClientResolvedConfig
20
21
  > {
21
22
  readonly input: RemovePermissionCommandInput;
23
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
22
24
  constructor(input: RemovePermissionCommandInput);
23
25
  resolveMiddleware(
24
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,