@aws-sdk/client-sqs 3.168.0 → 3.170.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 (39) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/SQS.d.ts +364 -105
  3. package/dist-types/ts3.4/SQSClient.d.ts +250 -95
  4. package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +33 -17
  22. package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/index.d.ts +20 -20
  25. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  26. package/dist-types/ts3.4/index.d.ts +6 -6
  27. package/dist-types/ts3.4/models/SQSServiceException.d.ts +8 -6
  28. package/dist-types/ts3.4/models/index.d.ts +1 -1
  29. package/dist-types/ts3.4/models/models_0.d.ts +634 -545
  30. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  31. package/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  34. package/dist-types/ts3.4/protocols/Aws_query.d.ts +245 -62
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -39
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -40
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -38
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  39. package/package.json +36 -36
@@ -1,95 +1,250 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { AddPermissionCommandInput, AddPermissionCommandOutput } from "./commands/AddPermissionCommand";
10
- import { ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput } from "./commands/ChangeMessageVisibilityBatchCommand";
11
- import { ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput } from "./commands/ChangeMessageVisibilityCommand";
12
- import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
13
- import { DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput } from "./commands/DeleteMessageBatchCommand";
14
- import { DeleteMessageCommandInput, DeleteMessageCommandOutput } from "./commands/DeleteMessageCommand";
15
- import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/DeleteQueueCommand";
16
- import { GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput } from "./commands/GetQueueAttributesCommand";
17
- import { GetQueueUrlCommandInput, GetQueueUrlCommandOutput } from "./commands/GetQueueUrlCommand";
18
- import { ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput } from "./commands/ListDeadLetterSourceQueuesCommand";
19
- import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
20
- import { ListQueueTagsCommandInput, ListQueueTagsCommandOutput } from "./commands/ListQueueTagsCommand";
21
- import { PurgeQueueCommandInput, PurgeQueueCommandOutput } from "./commands/PurgeQueueCommand";
22
- import { ReceiveMessageCommandInput, ReceiveMessageCommandOutput } from "./commands/ReceiveMessageCommand";
23
- import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "./commands/RemovePermissionCommand";
24
- import { SendMessageBatchCommandInput, SendMessageBatchCommandOutput } from "./commands/SendMessageBatchCommand";
25
- import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand";
26
- import { SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput } from "./commands/SetQueueAttributesCommand";
27
- import { TagQueueCommandInput, TagQueueCommandOutput } from "./commands/TagQueueCommand";
28
- import { UntagQueueCommandInput, UntagQueueCommandOutput } from "./commands/UntagQueueCommand";
29
- export declare type ServiceInputTypes = AddPermissionCommandInput | ChangeMessageVisibilityBatchCommandInput | ChangeMessageVisibilityCommandInput | CreateQueueCommandInput | DeleteMessageBatchCommandInput | DeleteMessageCommandInput | DeleteQueueCommandInput | GetQueueAttributesCommandInput | GetQueueUrlCommandInput | ListDeadLetterSourceQueuesCommandInput | ListQueueTagsCommandInput | ListQueuesCommandInput | PurgeQueueCommandInput | ReceiveMessageCommandInput | RemovePermissionCommandInput | SendMessageBatchCommandInput | SendMessageCommandInput | SetQueueAttributesCommandInput | TagQueueCommandInput | UntagQueueCommandInput;
30
- export declare type ServiceOutputTypes = AddPermissionCommandOutput | ChangeMessageVisibilityBatchCommandOutput | ChangeMessageVisibilityCommandOutput | CreateQueueCommandOutput | DeleteMessageBatchCommandOutput | DeleteMessageCommandOutput | DeleteQueueCommandOutput | GetQueueAttributesCommandOutput | GetQueueUrlCommandOutput | ListDeadLetterSourceQueuesCommandOutput | ListQueueTagsCommandOutput | ListQueuesCommandOutput | PurgeQueueCommandOutput | ReceiveMessageCommandOutput | RemovePermissionCommandOutput | SendMessageBatchCommandOutput | SendMessageCommandOutput | SetQueueAttributesCommandOutput | TagQueueCommandOutput | UntagQueueCommandOutput;
31
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
32
-
33
- requestHandler?: __HttpHandler;
34
-
35
- sha256?: __HashConstructor;
36
-
37
- urlParser?: __UrlParser;
38
-
39
- bodyLengthChecker?: __BodyLengthCalculator;
40
-
41
- streamCollector?: __StreamCollector;
42
-
43
- base64Decoder?: __Decoder;
44
-
45
- base64Encoder?: __Encoder;
46
-
47
- utf8Decoder?: __Decoder;
48
-
49
- utf8Encoder?: __Encoder;
50
-
51
- runtime?: string;
52
-
53
- disableHostPrefix?: boolean;
54
-
55
- maxAttempts?: number | __Provider<number>;
56
-
57
- retryMode?: string | __Provider<string>;
58
-
59
- logger?: __Logger;
60
-
61
- useDualstackEndpoint?: boolean | __Provider<boolean>;
62
-
63
- useFipsEndpoint?: boolean | __Provider<boolean>;
64
-
65
- serviceId?: string;
66
-
67
- region?: string | __Provider<string>;
68
-
69
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
70
-
71
- regionInfoProvider?: RegionInfoProvider;
72
-
73
- md5?: __HashConstructor;
74
-
75
- defaultUserAgentProvider?: Provider<__UserAgent>;
76
-
77
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
78
- }
79
- declare type SQSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
80
-
81
- export interface SQSClientConfig extends SQSClientConfigType {
82
- }
83
- declare type SQSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
84
-
85
- export interface SQSClientResolvedConfig extends SQSClientResolvedConfigType {
86
- }
87
-
88
- export declare class SQSClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig> {
89
-
90
- readonly config: SQSClientResolvedConfig;
91
- constructor(configuration: SQSClientConfig);
92
-
93
- destroy(): void;
94
- }
95
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ AddPermissionCommandInput,
47
+ AddPermissionCommandOutput,
48
+ } from "./commands/AddPermissionCommand";
49
+ import {
50
+ ChangeMessageVisibilityBatchCommandInput,
51
+ ChangeMessageVisibilityBatchCommandOutput,
52
+ } from "./commands/ChangeMessageVisibilityBatchCommand";
53
+ import {
54
+ ChangeMessageVisibilityCommandInput,
55
+ ChangeMessageVisibilityCommandOutput,
56
+ } from "./commands/ChangeMessageVisibilityCommand";
57
+ import {
58
+ CreateQueueCommandInput,
59
+ CreateQueueCommandOutput,
60
+ } from "./commands/CreateQueueCommand";
61
+ import {
62
+ DeleteMessageBatchCommandInput,
63
+ DeleteMessageBatchCommandOutput,
64
+ } from "./commands/DeleteMessageBatchCommand";
65
+ import {
66
+ DeleteMessageCommandInput,
67
+ DeleteMessageCommandOutput,
68
+ } from "./commands/DeleteMessageCommand";
69
+ import {
70
+ DeleteQueueCommandInput,
71
+ DeleteQueueCommandOutput,
72
+ } from "./commands/DeleteQueueCommand";
73
+ import {
74
+ GetQueueAttributesCommandInput,
75
+ GetQueueAttributesCommandOutput,
76
+ } from "./commands/GetQueueAttributesCommand";
77
+ import {
78
+ GetQueueUrlCommandInput,
79
+ GetQueueUrlCommandOutput,
80
+ } from "./commands/GetQueueUrlCommand";
81
+ import {
82
+ ListDeadLetterSourceQueuesCommandInput,
83
+ ListDeadLetterSourceQueuesCommandOutput,
84
+ } from "./commands/ListDeadLetterSourceQueuesCommand";
85
+ import {
86
+ ListQueuesCommandInput,
87
+ ListQueuesCommandOutput,
88
+ } from "./commands/ListQueuesCommand";
89
+ import {
90
+ ListQueueTagsCommandInput,
91
+ ListQueueTagsCommandOutput,
92
+ } from "./commands/ListQueueTagsCommand";
93
+ import {
94
+ PurgeQueueCommandInput,
95
+ PurgeQueueCommandOutput,
96
+ } from "./commands/PurgeQueueCommand";
97
+ import {
98
+ ReceiveMessageCommandInput,
99
+ ReceiveMessageCommandOutput,
100
+ } from "./commands/ReceiveMessageCommand";
101
+ import {
102
+ RemovePermissionCommandInput,
103
+ RemovePermissionCommandOutput,
104
+ } from "./commands/RemovePermissionCommand";
105
+ import {
106
+ SendMessageBatchCommandInput,
107
+ SendMessageBatchCommandOutput,
108
+ } from "./commands/SendMessageBatchCommand";
109
+ import {
110
+ SendMessageCommandInput,
111
+ SendMessageCommandOutput,
112
+ } from "./commands/SendMessageCommand";
113
+ import {
114
+ SetQueueAttributesCommandInput,
115
+ SetQueueAttributesCommandOutput,
116
+ } from "./commands/SetQueueAttributesCommand";
117
+ import {
118
+ TagQueueCommandInput,
119
+ TagQueueCommandOutput,
120
+ } from "./commands/TagQueueCommand";
121
+ import {
122
+ UntagQueueCommandInput,
123
+ UntagQueueCommandOutput,
124
+ } from "./commands/UntagQueueCommand";
125
+ export declare type ServiceInputTypes =
126
+ | AddPermissionCommandInput
127
+ | ChangeMessageVisibilityBatchCommandInput
128
+ | ChangeMessageVisibilityCommandInput
129
+ | CreateQueueCommandInput
130
+ | DeleteMessageBatchCommandInput
131
+ | DeleteMessageCommandInput
132
+ | DeleteQueueCommandInput
133
+ | GetQueueAttributesCommandInput
134
+ | GetQueueUrlCommandInput
135
+ | ListDeadLetterSourceQueuesCommandInput
136
+ | ListQueueTagsCommandInput
137
+ | ListQueuesCommandInput
138
+ | PurgeQueueCommandInput
139
+ | ReceiveMessageCommandInput
140
+ | RemovePermissionCommandInput
141
+ | SendMessageBatchCommandInput
142
+ | SendMessageCommandInput
143
+ | SetQueueAttributesCommandInput
144
+ | TagQueueCommandInput
145
+ | UntagQueueCommandInput;
146
+ export declare type ServiceOutputTypes =
147
+ | AddPermissionCommandOutput
148
+ | ChangeMessageVisibilityBatchCommandOutput
149
+ | ChangeMessageVisibilityCommandOutput
150
+ | CreateQueueCommandOutput
151
+ | DeleteMessageBatchCommandOutput
152
+ | DeleteMessageCommandOutput
153
+ | DeleteQueueCommandOutput
154
+ | GetQueueAttributesCommandOutput
155
+ | GetQueueUrlCommandOutput
156
+ | ListDeadLetterSourceQueuesCommandOutput
157
+ | ListQueueTagsCommandOutput
158
+ | ListQueuesCommandOutput
159
+ | PurgeQueueCommandOutput
160
+ | ReceiveMessageCommandOutput
161
+ | RemovePermissionCommandOutput
162
+ | SendMessageBatchCommandOutput
163
+ | SendMessageCommandOutput
164
+ | SetQueueAttributesCommandOutput
165
+ | TagQueueCommandOutput
166
+ | UntagQueueCommandOutput;
167
+ export interface ClientDefaults
168
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
169
+ requestHandler?: __HttpHandler;
170
+
171
+ sha256?: __HashConstructor;
172
+
173
+ urlParser?: __UrlParser;
174
+
175
+ bodyLengthChecker?: __BodyLengthCalculator;
176
+
177
+ streamCollector?: __StreamCollector;
178
+
179
+ base64Decoder?: __Decoder;
180
+
181
+ base64Encoder?: __Encoder;
182
+
183
+ utf8Decoder?: __Decoder;
184
+
185
+ utf8Encoder?: __Encoder;
186
+
187
+ runtime?: string;
188
+
189
+ disableHostPrefix?: boolean;
190
+
191
+ maxAttempts?: number | __Provider<number>;
192
+
193
+ retryMode?: string | __Provider<string>;
194
+
195
+ logger?: __Logger;
196
+
197
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
198
+
199
+ useFipsEndpoint?: boolean | __Provider<boolean>;
200
+
201
+ serviceId?: string;
202
+
203
+ region?: string | __Provider<string>;
204
+
205
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
206
+
207
+ regionInfoProvider?: RegionInfoProvider;
208
+
209
+ md5?: __HashConstructor;
210
+
211
+ defaultUserAgentProvider?: Provider<__UserAgent>;
212
+
213
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
214
+ }
215
+ declare type SQSClientConfigType = Partial<
216
+ __SmithyConfiguration<__HttpHandlerOptions>
217
+ > &
218
+ ClientDefaults &
219
+ RegionInputConfig &
220
+ EndpointsInputConfig &
221
+ RetryInputConfig &
222
+ HostHeaderInputConfig &
223
+ AwsAuthInputConfig &
224
+ UserAgentInputConfig;
225
+
226
+ export interface SQSClientConfig extends SQSClientConfigType {}
227
+ declare type SQSClientResolvedConfigType =
228
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
229
+ Required<ClientDefaults> &
230
+ RegionResolvedConfig &
231
+ EndpointsResolvedConfig &
232
+ RetryResolvedConfig &
233
+ HostHeaderResolvedConfig &
234
+ AwsAuthResolvedConfig &
235
+ UserAgentResolvedConfig;
236
+
237
+ export interface SQSClientResolvedConfig extends SQSClientResolvedConfigType {}
238
+
239
+ export declare class SQSClient extends __Client<
240
+ __HttpHandlerOptions,
241
+ ServiceInputTypes,
242
+ ServiceOutputTypes,
243
+ SQSClientResolvedConfig
244
+ > {
245
+ readonly config: SQSClientResolvedConfig;
246
+ constructor(configuration: SQSClientConfig);
247
+
248
+ destroy(): void;
249
+ }
250
+ export {};
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AddPermissionRequest } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
- export interface AddPermissionCommandInput extends AddPermissionRequest {
6
- }
7
- export interface AddPermissionCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class AddPermissionCommand extends $Command<AddPermissionCommandInput, AddPermissionCommandOutput, SQSClientResolvedConfig> {
11
- readonly input: AddPermissionCommandInput;
12
- constructor(input: AddPermissionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddPermissionCommandInput, AddPermissionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { AddPermissionRequest } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SQSClientResolvedConfig,
13
+ } from "../SQSClient";
14
+ export interface AddPermissionCommandInput extends AddPermissionRequest {}
15
+ export interface AddPermissionCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class AddPermissionCommand extends $Command<
18
+ AddPermissionCommandInput,
19
+ AddPermissionCommandOutput,
20
+ SQSClientResolvedConfig
21
+ > {
22
+ readonly input: AddPermissionCommandInput;
23
+ constructor(input: AddPermissionCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SQSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<AddPermissionCommandInput, AddPermissionCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChangeMessageVisibilityBatchRequest, ChangeMessageVisibilityBatchResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
- export interface ChangeMessageVisibilityBatchCommandInput extends ChangeMessageVisibilityBatchRequest {
6
- }
7
- export interface ChangeMessageVisibilityBatchCommandOutput extends ChangeMessageVisibilityBatchResult, __MetadataBearer {
8
- }
9
-
10
- export declare class ChangeMessageVisibilityBatchCommand extends $Command<ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput, SQSClientResolvedConfig> {
11
- readonly input: ChangeMessageVisibilityBatchCommandInput;
12
- constructor(input: ChangeMessageVisibilityBatchCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChangeMessageVisibilityBatchRequest,
10
+ ChangeMessageVisibilityBatchResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SQSClientResolvedConfig,
16
+ } from "../SQSClient";
17
+ export interface ChangeMessageVisibilityBatchCommandInput
18
+ extends ChangeMessageVisibilityBatchRequest {}
19
+ export interface ChangeMessageVisibilityBatchCommandOutput
20
+ extends ChangeMessageVisibilityBatchResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ChangeMessageVisibilityBatchCommand extends $Command<
24
+ ChangeMessageVisibilityBatchCommandInput,
25
+ ChangeMessageVisibilityBatchCommandOutput,
26
+ SQSClientResolvedConfig
27
+ > {
28
+ readonly input: ChangeMessageVisibilityBatchCommandInput;
29
+ constructor(input: ChangeMessageVisibilityBatchCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SQSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ChangeMessageVisibilityBatchCommandInput,
37
+ ChangeMessageVisibilityBatchCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChangeMessageVisibilityRequest } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
- export interface ChangeMessageVisibilityCommandInput extends ChangeMessageVisibilityRequest {
6
- }
7
- export interface ChangeMessageVisibilityCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class ChangeMessageVisibilityCommand extends $Command<ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput, SQSClientResolvedConfig> {
11
- readonly input: ChangeMessageVisibilityCommandInput;
12
- constructor(input: ChangeMessageVisibilityCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { ChangeMessageVisibilityRequest } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SQSClientResolvedConfig,
13
+ } from "../SQSClient";
14
+ export interface ChangeMessageVisibilityCommandInput
15
+ extends ChangeMessageVisibilityRequest {}
16
+ export interface ChangeMessageVisibilityCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class ChangeMessageVisibilityCommand extends $Command<
20
+ ChangeMessageVisibilityCommandInput,
21
+ ChangeMessageVisibilityCommandOutput,
22
+ SQSClientResolvedConfig
23
+ > {
24
+ readonly input: ChangeMessageVisibilityCommandInput;
25
+ constructor(input: ChangeMessageVisibilityCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SQSClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ ChangeMessageVisibilityCommandInput,
33
+ ChangeMessageVisibilityCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CreateQueueRequest, CreateQueueResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
- export interface CreateQueueCommandInput extends CreateQueueRequest {
6
- }
7
- export interface CreateQueueCommandOutput extends CreateQueueResult, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateQueueCommand extends $Command<CreateQueueCommandInput, CreateQueueCommandOutput, SQSClientResolvedConfig> {
11
- readonly input: CreateQueueCommandInput;
12
- constructor(input: CreateQueueCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateQueueCommandInput, CreateQueueCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { CreateQueueRequest, CreateQueueResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SQSClientResolvedConfig,
13
+ } from "../SQSClient";
14
+ export interface CreateQueueCommandInput extends CreateQueueRequest {}
15
+ export interface CreateQueueCommandOutput
16
+ extends CreateQueueResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateQueueCommand extends $Command<
20
+ CreateQueueCommandInput,
21
+ CreateQueueCommandOutput,
22
+ SQSClientResolvedConfig
23
+ > {
24
+ readonly input: CreateQueueCommandInput;
25
+ constructor(input: CreateQueueCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SQSClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateQueueCommandInput, CreateQueueCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DeleteMessageBatchRequest, DeleteMessageBatchResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
- export interface DeleteMessageBatchCommandInput extends DeleteMessageBatchRequest {
6
- }
7
- export interface DeleteMessageBatchCommandOutput extends DeleteMessageBatchResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteMessageBatchCommand extends $Command<DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput, SQSClientResolvedConfig> {
11
- readonly input: DeleteMessageBatchCommandInput;
12
- constructor(input: DeleteMessageBatchCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeleteMessageBatchRequest,
10
+ DeleteMessageBatchResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SQSClientResolvedConfig,
16
+ } from "../SQSClient";
17
+ export interface DeleteMessageBatchCommandInput
18
+ extends DeleteMessageBatchRequest {}
19
+ export interface DeleteMessageBatchCommandOutput
20
+ extends DeleteMessageBatchResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteMessageBatchCommand extends $Command<
24
+ DeleteMessageBatchCommandInput,
25
+ DeleteMessageBatchCommandOutput,
26
+ SQSClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteMessageBatchCommandInput;
29
+ constructor(input: DeleteMessageBatchCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SQSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }