@aws-sdk/client-sqs 3.169.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 +8 -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,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 { 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
- }
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
+
17
+ export declare class DeleteMessageCommand extends $Command<
18
+ DeleteMessageCommandInput,
19
+ DeleteMessageCommandOutput,
20
+ SQSClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteMessageCommandInput;
23
+ constructor(input: DeleteMessageCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SQSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteMessageCommandInput, DeleteMessageCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { 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
- }
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 { DeleteQueueRequest } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SQSClientResolvedConfig,
13
+ } from "../SQSClient";
14
+ export interface DeleteQueueCommandInput extends DeleteQueueRequest {}
15
+ export interface DeleteQueueCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class DeleteQueueCommand extends $Command<
18
+ DeleteQueueCommandInput,
19
+ DeleteQueueCommandOutput,
20
+ SQSClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteQueueCommandInput;
23
+ constructor(input: DeleteQueueCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SQSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteQueueCommandInput, DeleteQueueCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { 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
- }
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
+ GetQueueAttributesRequest,
10
+ GetQueueAttributesResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SQSClientResolvedConfig,
16
+ } from "../SQSClient";
17
+ export interface GetQueueAttributesCommandInput
18
+ extends GetQueueAttributesRequest {}
19
+ export interface GetQueueAttributesCommandOutput
20
+ extends GetQueueAttributesResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetQueueAttributesCommand extends $Command<
24
+ GetQueueAttributesCommandInput,
25
+ GetQueueAttributesCommandOutput,
26
+ SQSClientResolvedConfig
27
+ > {
28
+ readonly input: GetQueueAttributesCommandInput;
29
+ constructor(input: GetQueueAttributesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SQSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { 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
- }
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 { GetQueueUrlRequest, GetQueueUrlResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SQSClientResolvedConfig,
13
+ } from "../SQSClient";
14
+ export interface GetQueueUrlCommandInput extends GetQueueUrlRequest {}
15
+ export interface GetQueueUrlCommandOutput
16
+ extends GetQueueUrlResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetQueueUrlCommand extends $Command<
20
+ GetQueueUrlCommandInput,
21
+ GetQueueUrlCommandOutput,
22
+ SQSClientResolvedConfig
23
+ > {
24
+ readonly input: GetQueueUrlCommandInput;
25
+ constructor(input: GetQueueUrlCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SQSClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetQueueUrlCommandInput, GetQueueUrlCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { 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
- }
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
+ ListDeadLetterSourceQueuesRequest,
10
+ ListDeadLetterSourceQueuesResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SQSClientResolvedConfig,
16
+ } from "../SQSClient";
17
+ export interface ListDeadLetterSourceQueuesCommandInput
18
+ extends ListDeadLetterSourceQueuesRequest {}
19
+ export interface ListDeadLetterSourceQueuesCommandOutput
20
+ extends ListDeadLetterSourceQueuesResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListDeadLetterSourceQueuesCommand extends $Command<
24
+ ListDeadLetterSourceQueuesCommandInput,
25
+ ListDeadLetterSourceQueuesCommandOutput,
26
+ SQSClientResolvedConfig
27
+ > {
28
+ readonly input: ListDeadLetterSourceQueuesCommandInput;
29
+ constructor(input: ListDeadLetterSourceQueuesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SQSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListDeadLetterSourceQueuesCommandInput,
37
+ ListDeadLetterSourceQueuesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { 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
- }
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 { ListQueueTagsRequest, ListQueueTagsResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SQSClientResolvedConfig,
13
+ } from "../SQSClient";
14
+ export interface ListQueueTagsCommandInput extends ListQueueTagsRequest {}
15
+ export interface ListQueueTagsCommandOutput
16
+ extends ListQueueTagsResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListQueueTagsCommand extends $Command<
20
+ ListQueueTagsCommandInput,
21
+ ListQueueTagsCommandOutput,
22
+ SQSClientResolvedConfig
23
+ > {
24
+ readonly input: ListQueueTagsCommandInput;
25
+ constructor(input: ListQueueTagsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SQSClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListQueueTagsCommandInput, ListQueueTagsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { 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
- }
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 { ListQueuesRequest, ListQueuesResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SQSClientResolvedConfig,
13
+ } from "../SQSClient";
14
+ export interface ListQueuesCommandInput extends ListQueuesRequest {}
15
+ export interface ListQueuesCommandOutput
16
+ extends ListQueuesResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListQueuesCommand extends $Command<
20
+ ListQueuesCommandInput,
21
+ ListQueuesCommandOutput,
22
+ SQSClientResolvedConfig
23
+ > {
24
+ readonly input: ListQueuesCommandInput;
25
+ constructor(input: ListQueuesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SQSClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListQueuesCommandInput, ListQueuesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { 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
- }
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 { PurgeQueueRequest } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SQSClientResolvedConfig,
13
+ } from "../SQSClient";
14
+ export interface PurgeQueueCommandInput extends PurgeQueueRequest {}
15
+ export interface PurgeQueueCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class PurgeQueueCommand extends $Command<
18
+ PurgeQueueCommandInput,
19
+ PurgeQueueCommandOutput,
20
+ SQSClientResolvedConfig
21
+ > {
22
+ readonly input: PurgeQueueCommandInput;
23
+ constructor(input: PurgeQueueCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SQSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<PurgeQueueCommandInput, PurgeQueueCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { 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
- }
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
+ ReceiveMessageRequest,
10
+ ReceiveMessageResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SQSClientResolvedConfig,
16
+ } from "../SQSClient";
17
+ export interface ReceiveMessageCommandInput extends ReceiveMessageRequest {}
18
+ export interface ReceiveMessageCommandOutput
19
+ extends ReceiveMessageResult,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ReceiveMessageCommand extends $Command<
23
+ ReceiveMessageCommandInput,
24
+ ReceiveMessageCommandOutput,
25
+ SQSClientResolvedConfig
26
+ > {
27
+ readonly input: ReceiveMessageCommandInput;
28
+ constructor(input: ReceiveMessageCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SQSClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ReceiveMessageCommandInput, ReceiveMessageCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { 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
- }
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 { RemovePermissionRequest } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SQSClientResolvedConfig,
13
+ } from "../SQSClient";
14
+ export interface RemovePermissionCommandInput extends RemovePermissionRequest {}
15
+ export interface RemovePermissionCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class RemovePermissionCommand extends $Command<
18
+ RemovePermissionCommandInput,
19
+ RemovePermissionCommandOutput,
20
+ SQSClientResolvedConfig
21
+ > {
22
+ readonly input: RemovePermissionCommandInput;
23
+ constructor(input: RemovePermissionCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SQSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<RemovePermissionCommandInput, RemovePermissionCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { 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
- }
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
+ SendMessageBatchRequest,
10
+ SendMessageBatchResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SQSClientResolvedConfig,
16
+ } from "../SQSClient";
17
+ export interface SendMessageBatchCommandInput extends SendMessageBatchRequest {}
18
+ export interface SendMessageBatchCommandOutput
19
+ extends SendMessageBatchResult,
20
+ __MetadataBearer {}
21
+
22
+ export declare class SendMessageBatchCommand extends $Command<
23
+ SendMessageBatchCommandInput,
24
+ SendMessageBatchCommandOutput,
25
+ SQSClientResolvedConfig
26
+ > {
27
+ readonly input: SendMessageBatchCommandInput;
28
+ constructor(input: SendMessageBatchCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SQSClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<SendMessageBatchCommandInput, SendMessageBatchCommandOutput>;
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 { 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
- }
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 { SendMessageRequest, SendMessageResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SQSClientResolvedConfig,
13
+ } from "../SQSClient";
14
+ export interface SendMessageCommandInput extends SendMessageRequest {}
15
+ export interface SendMessageCommandOutput
16
+ extends SendMessageResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class SendMessageCommand extends $Command<
20
+ SendMessageCommandInput,
21
+ SendMessageCommandOutput,
22
+ SQSClientResolvedConfig
23
+ > {
24
+ readonly input: SendMessageCommandInput;
25
+ constructor(input: SendMessageCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SQSClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<SendMessageCommandInput, SendMessageCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }