@aws-sdk/client-sqs 3.50.0 → 3.51.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 (38) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/SQS.d.ts +105 -0
  3. package/dist-types/ts3.4/SQSClient.d.ts +95 -0
  4. package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  25. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  26. package/dist-types/ts3.4/index.d.ts +5 -0
  27. package/dist-types/ts3.4/models/index.d.ts +1 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +618 -0
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  30. package/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +4 -0
  31. package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +4 -0
  32. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  33. package/dist-types/ts3.4/protocols/Aws_query.d.ts +62 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +39 -0
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +40 -0
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +38 -0
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  38. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-sqs
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-sqs
@@ -0,0 +1,105 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AddPermissionCommandInput, AddPermissionCommandOutput } from "./commands/AddPermissionCommand";
3
+ import { ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput } from "./commands/ChangeMessageVisibilityBatchCommand";
4
+ import { ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput } from "./commands/ChangeMessageVisibilityCommand";
5
+ import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
6
+ import { DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput } from "./commands/DeleteMessageBatchCommand";
7
+ import { DeleteMessageCommandInput, DeleteMessageCommandOutput } from "./commands/DeleteMessageCommand";
8
+ import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/DeleteQueueCommand";
9
+ import { GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput } from "./commands/GetQueueAttributesCommand";
10
+ import { GetQueueUrlCommandInput, GetQueueUrlCommandOutput } from "./commands/GetQueueUrlCommand";
11
+ import { ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput } from "./commands/ListDeadLetterSourceQueuesCommand";
12
+ import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
13
+ import { ListQueueTagsCommandInput, ListQueueTagsCommandOutput } from "./commands/ListQueueTagsCommand";
14
+ import { PurgeQueueCommandInput, PurgeQueueCommandOutput } from "./commands/PurgeQueueCommand";
15
+ import { ReceiveMessageCommandInput, ReceiveMessageCommandOutput } from "./commands/ReceiveMessageCommand";
16
+ import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "./commands/RemovePermissionCommand";
17
+ import { SendMessageBatchCommandInput, SendMessageBatchCommandOutput } from "./commands/SendMessageBatchCommand";
18
+ import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand";
19
+ import { SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput } from "./commands/SetQueueAttributesCommand";
20
+ import { TagQueueCommandInput, TagQueueCommandOutput } from "./commands/TagQueueCommand";
21
+ import { UntagQueueCommandInput, UntagQueueCommandOutput } from "./commands/UntagQueueCommand";
22
+ import { SQSClient } from "./SQSClient";
23
+
24
+ export declare class SQS extends SQSClient {
25
+
26
+ addPermission(args: AddPermissionCommandInput, options?: __HttpHandlerOptions): Promise<AddPermissionCommandOutput>;
27
+ addPermission(args: AddPermissionCommandInput, cb: (err: any, data?: AddPermissionCommandOutput) => void): void;
28
+ addPermission(args: AddPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddPermissionCommandOutput) => void): void;
29
+
30
+ changeMessageVisibility(args: ChangeMessageVisibilityCommandInput, options?: __HttpHandlerOptions): Promise<ChangeMessageVisibilityCommandOutput>;
31
+ changeMessageVisibility(args: ChangeMessageVisibilityCommandInput, cb: (err: any, data?: ChangeMessageVisibilityCommandOutput) => void): void;
32
+ changeMessageVisibility(args: ChangeMessageVisibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ChangeMessageVisibilityCommandOutput) => void): void;
33
+
34
+ changeMessageVisibilityBatch(args: ChangeMessageVisibilityBatchCommandInput, options?: __HttpHandlerOptions): Promise<ChangeMessageVisibilityBatchCommandOutput>;
35
+ changeMessageVisibilityBatch(args: ChangeMessageVisibilityBatchCommandInput, cb: (err: any, data?: ChangeMessageVisibilityBatchCommandOutput) => void): void;
36
+ changeMessageVisibilityBatch(args: ChangeMessageVisibilityBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ChangeMessageVisibilityBatchCommandOutput) => void): void;
37
+
38
+ createQueue(args: CreateQueueCommandInput, options?: __HttpHandlerOptions): Promise<CreateQueueCommandOutput>;
39
+ createQueue(args: CreateQueueCommandInput, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
40
+ createQueue(args: CreateQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
41
+
42
+ deleteMessage(args: DeleteMessageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMessageCommandOutput>;
43
+ deleteMessage(args: DeleteMessageCommandInput, cb: (err: any, data?: DeleteMessageCommandOutput) => void): void;
44
+ deleteMessage(args: DeleteMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMessageCommandOutput) => void): void;
45
+
46
+ deleteMessageBatch(args: DeleteMessageBatchCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMessageBatchCommandOutput>;
47
+ deleteMessageBatch(args: DeleteMessageBatchCommandInput, cb: (err: any, data?: DeleteMessageBatchCommandOutput) => void): void;
48
+ deleteMessageBatch(args: DeleteMessageBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMessageBatchCommandOutput) => void): void;
49
+
50
+ deleteQueue(args: DeleteQueueCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueueCommandOutput>;
51
+ deleteQueue(args: DeleteQueueCommandInput, cb: (err: any, data?: DeleteQueueCommandOutput) => void): void;
52
+ deleteQueue(args: DeleteQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueueCommandOutput) => void): void;
53
+
54
+ getQueueAttributes(args: GetQueueAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetQueueAttributesCommandOutput>;
55
+ getQueueAttributes(args: GetQueueAttributesCommandInput, cb: (err: any, data?: GetQueueAttributesCommandOutput) => void): void;
56
+ getQueueAttributes(args: GetQueueAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQueueAttributesCommandOutput) => void): void;
57
+
58
+ getQueueUrl(args: GetQueueUrlCommandInput, options?: __HttpHandlerOptions): Promise<GetQueueUrlCommandOutput>;
59
+ getQueueUrl(args: GetQueueUrlCommandInput, cb: (err: any, data?: GetQueueUrlCommandOutput) => void): void;
60
+ getQueueUrl(args: GetQueueUrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQueueUrlCommandOutput) => void): void;
61
+
62
+ listDeadLetterSourceQueues(args: ListDeadLetterSourceQueuesCommandInput, options?: __HttpHandlerOptions): Promise<ListDeadLetterSourceQueuesCommandOutput>;
63
+ listDeadLetterSourceQueues(args: ListDeadLetterSourceQueuesCommandInput, cb: (err: any, data?: ListDeadLetterSourceQueuesCommandOutput) => void): void;
64
+ listDeadLetterSourceQueues(args: ListDeadLetterSourceQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeadLetterSourceQueuesCommandOutput) => void): void;
65
+
66
+ listQueues(args: ListQueuesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueuesCommandOutput>;
67
+ listQueues(args: ListQueuesCommandInput, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
68
+ listQueues(args: ListQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
69
+
70
+ listQueueTags(args: ListQueueTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListQueueTagsCommandOutput>;
71
+ listQueueTags(args: ListQueueTagsCommandInput, cb: (err: any, data?: ListQueueTagsCommandOutput) => void): void;
72
+ listQueueTags(args: ListQueueTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueueTagsCommandOutput) => void): void;
73
+
74
+ purgeQueue(args: PurgeQueueCommandInput, options?: __HttpHandlerOptions): Promise<PurgeQueueCommandOutput>;
75
+ purgeQueue(args: PurgeQueueCommandInput, cb: (err: any, data?: PurgeQueueCommandOutput) => void): void;
76
+ purgeQueue(args: PurgeQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurgeQueueCommandOutput) => void): void;
77
+
78
+ receiveMessage(args: ReceiveMessageCommandInput, options?: __HttpHandlerOptions): Promise<ReceiveMessageCommandOutput>;
79
+ receiveMessage(args: ReceiveMessageCommandInput, cb: (err: any, data?: ReceiveMessageCommandOutput) => void): void;
80
+ receiveMessage(args: ReceiveMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReceiveMessageCommandOutput) => void): void;
81
+
82
+ removePermission(args: RemovePermissionCommandInput, options?: __HttpHandlerOptions): Promise<RemovePermissionCommandOutput>;
83
+ removePermission(args: RemovePermissionCommandInput, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
84
+ removePermission(args: RemovePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
85
+
86
+ sendMessage(args: SendMessageCommandInput, options?: __HttpHandlerOptions): Promise<SendMessageCommandOutput>;
87
+ sendMessage(args: SendMessageCommandInput, cb: (err: any, data?: SendMessageCommandOutput) => void): void;
88
+ sendMessage(args: SendMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendMessageCommandOutput) => void): void;
89
+
90
+ sendMessageBatch(args: SendMessageBatchCommandInput, options?: __HttpHandlerOptions): Promise<SendMessageBatchCommandOutput>;
91
+ sendMessageBatch(args: SendMessageBatchCommandInput, cb: (err: any, data?: SendMessageBatchCommandOutput) => void): void;
92
+ sendMessageBatch(args: SendMessageBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendMessageBatchCommandOutput) => void): void;
93
+
94
+ setQueueAttributes(args: SetQueueAttributesCommandInput, options?: __HttpHandlerOptions): Promise<SetQueueAttributesCommandOutput>;
95
+ setQueueAttributes(args: SetQueueAttributesCommandInput, cb: (err: any, data?: SetQueueAttributesCommandOutput) => void): void;
96
+ setQueueAttributes(args: SetQueueAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetQueueAttributesCommandOutput) => void): void;
97
+
98
+ tagQueue(args: TagQueueCommandInput, options?: __HttpHandlerOptions): Promise<TagQueueCommandOutput>;
99
+ tagQueue(args: TagQueueCommandInput, cb: (err: any, data?: TagQueueCommandOutput) => void): void;
100
+ tagQueue(args: TagQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagQueueCommandOutput) => void): void;
101
+
102
+ untagQueue(args: UntagQueueCommandInput, options?: __HttpHandlerOptions): Promise<UntagQueueCommandOutput>;
103
+ untagQueue(args: UntagQueueCommandInput, cb: (err: any, data?: UntagQueueCommandOutput) => void): void;
104
+ untagQueue(args: UntagQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagQueueCommandOutput) => void): void;
105
+ }
@@ -0,0 +1,95 @@
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 { 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?: (body: any) => number | undefined;
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 {};
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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 { DeleteMessageRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface DeleteMessageCommandInput extends DeleteMessageRequest {
6
+ }
7
+ export interface DeleteMessageCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteMessageCommand extends $Command<DeleteMessageCommandInput, DeleteMessageCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: DeleteMessageCommandInput;
12
+ constructor(input: DeleteMessageCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMessageCommandInput, DeleteMessageCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DeleteQueueRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface DeleteQueueCommandInput extends DeleteQueueRequest {
6
+ }
7
+ export interface DeleteQueueCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteQueueCommand extends $Command<DeleteQueueCommandInput, DeleteQueueCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: DeleteQueueCommandInput;
12
+ constructor(input: DeleteQueueCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteQueueCommandInput, DeleteQueueCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { GetQueueAttributesRequest, GetQueueAttributesResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface GetQueueAttributesCommandInput extends GetQueueAttributesRequest {
6
+ }
7
+ export interface GetQueueAttributesCommandOutput extends GetQueueAttributesResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetQueueAttributesCommand extends $Command<GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: GetQueueAttributesCommandInput;
12
+ constructor(input: GetQueueAttributesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { GetQueueUrlRequest, GetQueueUrlResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface GetQueueUrlCommandInput extends GetQueueUrlRequest {
6
+ }
7
+ export interface GetQueueUrlCommandOutput extends GetQueueUrlResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetQueueUrlCommand extends $Command<GetQueueUrlCommandInput, GetQueueUrlCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: GetQueueUrlCommandInput;
12
+ constructor(input: GetQueueUrlCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetQueueUrlCommandInput, GetQueueUrlCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListDeadLetterSourceQueuesRequest, ListDeadLetterSourceQueuesResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface ListDeadLetterSourceQueuesCommandInput extends ListDeadLetterSourceQueuesRequest {
6
+ }
7
+ export interface ListDeadLetterSourceQueuesCommandOutput extends ListDeadLetterSourceQueuesResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListDeadLetterSourceQueuesCommand extends $Command<ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: ListDeadLetterSourceQueuesCommandInput;
12
+ constructor(input: ListDeadLetterSourceQueuesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListQueueTagsRequest, ListQueueTagsResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface ListQueueTagsCommandInput extends ListQueueTagsRequest {
6
+ }
7
+ export interface ListQueueTagsCommandOutput extends ListQueueTagsResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListQueueTagsCommand extends $Command<ListQueueTagsCommandInput, ListQueueTagsCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: ListQueueTagsCommandInput;
12
+ constructor(input: ListQueueTagsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListQueueTagsCommandInput, ListQueueTagsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListQueuesRequest, ListQueuesResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface ListQueuesCommandInput extends ListQueuesRequest {
6
+ }
7
+ export interface ListQueuesCommandOutput extends ListQueuesResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListQueuesCommand extends $Command<ListQueuesCommandInput, ListQueuesCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: ListQueuesCommandInput;
12
+ constructor(input: ListQueuesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListQueuesCommandInput, ListQueuesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { PurgeQueueRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface PurgeQueueCommandInput extends PurgeQueueRequest {
6
+ }
7
+ export interface PurgeQueueCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class PurgeQueueCommand extends $Command<PurgeQueueCommandInput, PurgeQueueCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: PurgeQueueCommandInput;
12
+ constructor(input: PurgeQueueCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PurgeQueueCommandInput, PurgeQueueCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ReceiveMessageRequest, ReceiveMessageResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface ReceiveMessageCommandInput extends ReceiveMessageRequest {
6
+ }
7
+ export interface ReceiveMessageCommandOutput extends ReceiveMessageResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ReceiveMessageCommand extends $Command<ReceiveMessageCommandInput, ReceiveMessageCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: ReceiveMessageCommandInput;
12
+ constructor(input: ReceiveMessageCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ReceiveMessageCommandInput, ReceiveMessageCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { RemovePermissionRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface RemovePermissionCommandInput extends RemovePermissionRequest {
6
+ }
7
+ export interface RemovePermissionCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class RemovePermissionCommand extends $Command<RemovePermissionCommandInput, RemovePermissionCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: RemovePermissionCommandInput;
12
+ constructor(input: RemovePermissionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemovePermissionCommandInput, RemovePermissionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { SendMessageBatchRequest, SendMessageBatchResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface SendMessageBatchCommandInput extends SendMessageBatchRequest {
6
+ }
7
+ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SendMessageBatchCommand extends $Command<SendMessageBatchCommandInput, SendMessageBatchCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: SendMessageBatchCommandInput;
12
+ constructor(input: SendMessageBatchCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendMessageBatchCommandInput, SendMessageBatchCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { SendMessageRequest, SendMessageResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface SendMessageCommandInput extends SendMessageRequest {
6
+ }
7
+ export interface SendMessageCommandOutput extends SendMessageResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SendMessageCommand extends $Command<SendMessageCommandInput, SendMessageCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: SendMessageCommandInput;
12
+ constructor(input: SendMessageCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendMessageCommandInput, SendMessageCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { SetQueueAttributesRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface SetQueueAttributesCommandInput extends SetQueueAttributesRequest {
6
+ }
7
+ export interface SetQueueAttributesCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class SetQueueAttributesCommand extends $Command<SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: SetQueueAttributesCommandInput;
12
+ constructor(input: SetQueueAttributesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { TagQueueRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface TagQueueCommandInput extends TagQueueRequest {
6
+ }
7
+ export interface TagQueueCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagQueueCommand extends $Command<TagQueueCommandInput, TagQueueCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: TagQueueCommandInput;
12
+ constructor(input: TagQueueCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagQueueCommandInput, TagQueueCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { UntagQueueRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient";
5
+ export interface UntagQueueCommandInput extends UntagQueueRequest {
6
+ }
7
+ export interface UntagQueueCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagQueueCommand extends $Command<UntagQueueCommandInput, UntagQueueCommandOutput, SQSClientResolvedConfig> {
11
+ readonly input: UntagQueueCommandInput;
12
+ constructor(input: UntagQueueCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SQSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagQueueCommandInput, UntagQueueCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,20 @@
1
+ export * from "./AddPermissionCommand";
2
+ export * from "./ChangeMessageVisibilityBatchCommand";
3
+ export * from "./ChangeMessageVisibilityCommand";
4
+ export * from "./CreateQueueCommand";
5
+ export * from "./DeleteMessageBatchCommand";
6
+ export * from "./DeleteMessageCommand";
7
+ export * from "./DeleteQueueCommand";
8
+ export * from "./GetQueueAttributesCommand";
9
+ export * from "./GetQueueUrlCommand";
10
+ export * from "./ListDeadLetterSourceQueuesCommand";
11
+ export * from "./ListQueueTagsCommand";
12
+ export * from "./ListQueuesCommand";
13
+ export * from "./PurgeQueueCommand";
14
+ export * from "./ReceiveMessageCommand";
15
+ export * from "./RemovePermissionCommand";
16
+ export * from "./SendMessageBatchCommand";
17
+ export * from "./SendMessageCommand";
18
+ export * from "./SetQueueAttributesCommand";
19
+ export * from "./TagQueueCommand";
20
+ export * from "./UntagQueueCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;