@aws-sdk/client-sqs 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/SQS.d.ts +344 -105
- package/dist-types/ts3.4/SQSClient.d.ts +224 -95
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/index.d.ts +20 -20
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SQSServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +452 -545
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +245 -62
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -39
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -40
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +36 -36
|
@@ -1,95 +1,224 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
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
|
+
sha256?: __HashConstructor;
|
|
171
|
+
urlParser?: __UrlParser;
|
|
172
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
173
|
+
streamCollector?: __StreamCollector;
|
|
174
|
+
base64Decoder?: __Decoder;
|
|
175
|
+
base64Encoder?: __Encoder;
|
|
176
|
+
utf8Decoder?: __Decoder;
|
|
177
|
+
utf8Encoder?: __Encoder;
|
|
178
|
+
runtime?: string;
|
|
179
|
+
disableHostPrefix?: boolean;
|
|
180
|
+
maxAttempts?: number | __Provider<number>;
|
|
181
|
+
retryMode?: string | __Provider<string>;
|
|
182
|
+
logger?: __Logger;
|
|
183
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
184
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
185
|
+
serviceId?: string;
|
|
186
|
+
region?: string | __Provider<string>;
|
|
187
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
188
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
189
|
+
md5?: __HashConstructor;
|
|
190
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
191
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
192
|
+
}
|
|
193
|
+
declare type SQSClientConfigType = Partial<
|
|
194
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
195
|
+
> &
|
|
196
|
+
ClientDefaults &
|
|
197
|
+
RegionInputConfig &
|
|
198
|
+
EndpointsInputConfig &
|
|
199
|
+
RetryInputConfig &
|
|
200
|
+
HostHeaderInputConfig &
|
|
201
|
+
AwsAuthInputConfig &
|
|
202
|
+
UserAgentInputConfig;
|
|
203
|
+
export interface SQSClientConfig extends SQSClientConfigType {}
|
|
204
|
+
declare type SQSClientResolvedConfigType =
|
|
205
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
206
|
+
Required<ClientDefaults> &
|
|
207
|
+
RegionResolvedConfig &
|
|
208
|
+
EndpointsResolvedConfig &
|
|
209
|
+
RetryResolvedConfig &
|
|
210
|
+
HostHeaderResolvedConfig &
|
|
211
|
+
AwsAuthResolvedConfig &
|
|
212
|
+
UserAgentResolvedConfig;
|
|
213
|
+
export interface SQSClientResolvedConfig extends SQSClientResolvedConfigType {}
|
|
214
|
+
export declare class SQSClient extends __Client<
|
|
215
|
+
__HttpHandlerOptions,
|
|
216
|
+
ServiceInputTypes,
|
|
217
|
+
ServiceOutputTypes,
|
|
218
|
+
SQSClientResolvedConfig
|
|
219
|
+
> {
|
|
220
|
+
readonly config: SQSClientResolvedConfig;
|
|
221
|
+
constructor(configuration: SQSClientConfig);
|
|
222
|
+
destroy(): void;
|
|
223
|
+
}
|
|
224
|
+
export {};
|
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class AddPermissionCommand extends $Command<
|
|
17
|
+
AddPermissionCommandInput,
|
|
18
|
+
AddPermissionCommandOutput,
|
|
19
|
+
SQSClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: AddPermissionCommandInput;
|
|
22
|
+
constructor(input: AddPermissionCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: SQSClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<AddPermissionCommandInput, AddPermissionCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ChangeMessageVisibilityBatchCommand extends $Command<
|
|
23
|
+
ChangeMessageVisibilityBatchCommandInput,
|
|
24
|
+
ChangeMessageVisibilityBatchCommandOutput,
|
|
25
|
+
SQSClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ChangeMessageVisibilityBatchCommandInput;
|
|
28
|
+
constructor(input: ChangeMessageVisibilityBatchCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SQSClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ChangeMessageVisibilityBatchCommandInput,
|
|
35
|
+
ChangeMessageVisibilityBatchCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ChangeMessageVisibilityCommand extends $Command<
|
|
19
|
+
ChangeMessageVisibilityCommandInput,
|
|
20
|
+
ChangeMessageVisibilityCommandOutput,
|
|
21
|
+
SQSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ChangeMessageVisibilityCommandInput;
|
|
24
|
+
constructor(input: ChangeMessageVisibilityCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SQSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<
|
|
30
|
+
ChangeMessageVisibilityCommandInput,
|
|
31
|
+
ChangeMessageVisibilityCommandOutput
|
|
32
|
+
>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class CreateQueueCommand extends $Command<
|
|
19
|
+
CreateQueueCommandInput,
|
|
20
|
+
CreateQueueCommandOutput,
|
|
21
|
+
SQSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: CreateQueueCommandInput;
|
|
24
|
+
constructor(input: CreateQueueCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SQSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<CreateQueueCommandInput, CreateQueueCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DeleteMessageBatchCommand extends $Command<
|
|
23
|
+
DeleteMessageBatchCommandInput,
|
|
24
|
+
DeleteMessageBatchCommandOutput,
|
|
25
|
+
SQSClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteMessageBatchCommandInput;
|
|
28
|
+
constructor(input: DeleteMessageBatchCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SQSClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { DeleteMessageRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface DeleteMessageCommandInput extends DeleteMessageRequest {}
|
|
15
|
+
export interface DeleteMessageCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class DeleteMessageCommand extends $Command<
|
|
17
|
+
DeleteMessageCommandInput,
|
|
18
|
+
DeleteMessageCommandOutput,
|
|
19
|
+
SQSClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: DeleteMessageCommandInput;
|
|
22
|
+
constructor(input: DeleteMessageCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: SQSClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<DeleteMessageCommandInput, DeleteMessageCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|