@aws-sdk/client-sqs 3.1077.0 → 3.1078.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/dist-cjs/index.js +41 -243
- package/dist-es/commandBuilder.js +18 -0
- package/dist-es/commands/AddPermissionCommand.js +2 -14
- package/dist-es/commands/CancelMessageMoveTaskCommand.js +2 -14
- package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +2 -14
- package/dist-es/commands/ChangeMessageVisibilityCommand.js +2 -14
- package/dist-es/commands/CreateQueueCommand.js +2 -14
- package/dist-es/commands/DeleteMessageBatchCommand.js +2 -14
- package/dist-es/commands/DeleteMessageCommand.js +2 -14
- package/dist-es/commands/DeleteQueueCommand.js +2 -14
- package/dist-es/commands/GetQueueAttributesCommand.js +2 -14
- package/dist-es/commands/GetQueueUrlCommand.js +2 -14
- package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +2 -14
- package/dist-es/commands/ListMessageMoveTasksCommand.js +2 -14
- package/dist-es/commands/ListQueueTagsCommand.js +2 -14
- package/dist-es/commands/ListQueuesCommand.js +2 -14
- package/dist-es/commands/PurgeQueueCommand.js +2 -14
- package/dist-es/commands/ReceiveMessageCommand.js +2 -20
- package/dist-es/commands/RemovePermissionCommand.js +2 -14
- package/dist-es/commands/SendMessageBatchCommand.js +2 -18
- package/dist-es/commands/SendMessageCommand.js +2 -18
- package/dist-es/commands/SetQueueAttributesCommand.js +2 -14
- package/dist-es/commands/StartMessageMoveTaskCommand.js +2 -14
- package/dist-es/commands/TagQueueCommand.js +2 -14
- package/dist-es/commands/UntagQueueCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +30 -0
- package/dist-types/commands/AddPermissionCommand.d.ts +3 -8
- package/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +3 -8
- package/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +3 -8
- package/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +3 -8
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -8
- package/dist-types/commands/DeleteMessageBatchCommand.d.ts +3 -8
- package/dist-types/commands/DeleteMessageCommand.d.ts +3 -8
- package/dist-types/commands/DeleteQueueCommand.d.ts +3 -8
- package/dist-types/commands/GetQueueAttributesCommand.d.ts +3 -8
- package/dist-types/commands/GetQueueUrlCommand.d.ts +3 -8
- package/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +3 -8
- package/dist-types/commands/ListMessageMoveTasksCommand.d.ts +3 -8
- package/dist-types/commands/ListQueueTagsCommand.d.ts +3 -8
- package/dist-types/commands/ListQueuesCommand.d.ts +3 -8
- package/dist-types/commands/PurgeQueueCommand.d.ts +3 -8
- package/dist-types/commands/ReceiveMessageCommand.d.ts +3 -8
- package/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
- package/dist-types/commands/SendMessageBatchCommand.d.ts +3 -8
- package/dist-types/commands/SendMessageCommand.d.ts +3 -8
- package/dist-types/commands/SetQueueAttributesCommand.d.ts +3 -8
- package/dist-types/commands/StartMessageMoveTaskCommand.d.ts +3 -8
- package/dist-types/commands/TagQueueCommand.d.ts +3 -8
- package/dist-types/commands/UntagQueueCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +64 -0
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CancelMessageMoveTaskCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListMessageMoveTasksCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartMessageMoveTaskCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +10 -10
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { DeleteMessageRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteMessageCommandInput extends DeleteMessageRequest {}
|
|
12
5
|
export interface DeleteMessageCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const DeleteMessageCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const DeleteMessageCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
DeleteMessageCommandInput,
|
|
18
11
|
DeleteMessageCommandOutput,
|
|
19
|
-
SQSClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").SQSClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: DeleteMessageCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
DeleteMessageCommandInput,
|
|
27
20
|
DeleteMessageCommandOutput,
|
|
28
|
-
SQSClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").SQSClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class DeleteMessageCommand extends DeleteMessageCommand_base {
|
|
37
28
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { DeleteQueueRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteQueueCommandInput extends DeleteQueueRequest {}
|
|
12
5
|
export interface DeleteQueueCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const DeleteQueueCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const DeleteQueueCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
DeleteQueueCommandInput,
|
|
18
11
|
DeleteQueueCommandOutput,
|
|
19
|
-
SQSClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").SQSClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: DeleteQueueCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
DeleteQueueCommandInput,
|
|
27
20
|
DeleteQueueCommandOutput,
|
|
28
|
-
SQSClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").SQSClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class DeleteQueueCommand extends DeleteQueueCommand_base {
|
|
37
28
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetQueueAttributesRequest,
|
|
5
4
|
GetQueueAttributesResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SQSClientResolvedConfig,
|
|
11
|
-
} from "../SQSClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetQueueAttributesCommandInput
|
|
15
8
|
extends GetQueueAttributesRequest {}
|
|
16
9
|
export interface GetQueueAttributesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetQueueAttributesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetQueueAttributesCommandInput,
|
|
24
17
|
GetQueueAttributesCommandOutput,
|
|
25
|
-
SQSClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SQSClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetQueueAttributesCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetQueueAttributesCommandInput,
|
|
33
26
|
GetQueueAttributesCommandOutput,
|
|
34
|
-
SQSClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SQSClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetQueueAttributesCommand extends GetQueueAttributesCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { GetQueueUrlRequest, GetQueueUrlResult } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface GetQueueUrlCommandInput extends GetQueueUrlRequest {}
|
|
12
5
|
export interface GetQueueUrlCommandOutput
|
|
13
6
|
extends GetQueueUrlResult,
|
|
@@ -18,22 +11,20 @@ declare const GetQueueUrlCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
GetQueueUrlCommandInput,
|
|
20
13
|
GetQueueUrlCommandOutput,
|
|
21
|
-
SQSClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").SQSClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: GetQueueUrlCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
GetQueueUrlCommandInput,
|
|
29
22
|
GetQueueUrlCommandOutput,
|
|
30
|
-
SQSClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").SQSClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class GetQueueUrlCommand extends GetQueueUrlCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListDeadLetterSourceQueuesRequest,
|
|
5
4
|
ListDeadLetterSourceQueuesResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SQSClientResolvedConfig,
|
|
11
|
-
} from "../SQSClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListDeadLetterSourceQueuesCommandInput
|
|
15
8
|
extends ListDeadLetterSourceQueuesRequest {}
|
|
16
9
|
export interface ListDeadLetterSourceQueuesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListDeadLetterSourceQueuesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListDeadLetterSourceQueuesCommandInput,
|
|
24
17
|
ListDeadLetterSourceQueuesCommandOutput,
|
|
25
|
-
SQSClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SQSClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListDeadLetterSourceQueuesCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListDeadLetterSourceQueuesCommandInput,
|
|
33
26
|
ListDeadLetterSourceQueuesCommandOutput,
|
|
34
|
-
SQSClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SQSClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListDeadLetterSourceQueuesCommand extends ListDeadLetterSourceQueuesCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListMessageMoveTasksRequest,
|
|
5
4
|
ListMessageMoveTasksResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SQSClientResolvedConfig,
|
|
11
|
-
} from "../SQSClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListMessageMoveTasksCommandInput
|
|
15
8
|
extends ListMessageMoveTasksRequest {}
|
|
16
9
|
export interface ListMessageMoveTasksCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListMessageMoveTasksCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListMessageMoveTasksCommandInput,
|
|
24
17
|
ListMessageMoveTasksCommandOutput,
|
|
25
|
-
SQSClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SQSClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListMessageMoveTasksCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListMessageMoveTasksCommandInput,
|
|
33
26
|
ListMessageMoveTasksCommandOutput,
|
|
34
|
-
SQSClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SQSClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListMessageMoveTasksCommand extends ListMessageMoveTasksCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { ListQueueTagsRequest, ListQueueTagsResult } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListQueueTagsCommandInput extends ListQueueTagsRequest {}
|
|
12
5
|
export interface ListQueueTagsCommandOutput
|
|
13
6
|
extends ListQueueTagsResult,
|
|
@@ -18,22 +11,20 @@ declare const ListQueueTagsCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListQueueTagsCommandInput,
|
|
20
13
|
ListQueueTagsCommandOutput,
|
|
21
|
-
SQSClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").SQSClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: ListQueueTagsCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListQueueTagsCommandInput,
|
|
29
22
|
ListQueueTagsCommandOutput,
|
|
30
|
-
SQSClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").SQSClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class ListQueueTagsCommand extends ListQueueTagsCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { ListQueuesRequest, ListQueuesResult } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListQueuesCommandInput extends ListQueuesRequest {}
|
|
12
5
|
export interface ListQueuesCommandOutput
|
|
13
6
|
extends ListQueuesResult,
|
|
@@ -18,22 +11,20 @@ declare const ListQueuesCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListQueuesCommandInput,
|
|
20
13
|
ListQueuesCommandOutput,
|
|
21
|
-
SQSClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").SQSClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
...[input]: [] | [ListQueuesCommandInput]
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListQueuesCommandInput,
|
|
29
22
|
ListQueuesCommandOutput,
|
|
30
|
-
SQSClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").SQSClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class ListQueuesCommand extends ListQueuesCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { PurgeQueueRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface PurgeQueueCommandInput extends PurgeQueueRequest {}
|
|
12
5
|
export interface PurgeQueueCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const PurgeQueueCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const PurgeQueueCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
PurgeQueueCommandInput,
|
|
18
11
|
PurgeQueueCommandOutput,
|
|
19
|
-
SQSClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").SQSClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: PurgeQueueCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
PurgeQueueCommandInput,
|
|
27
20
|
PurgeQueueCommandOutput,
|
|
28
|
-
SQSClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").SQSClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class PurgeQueueCommand extends PurgeQueueCommand_base {
|
|
37
28
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ReceiveMessageRequest,
|
|
5
4
|
ReceiveMessageResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SQSClientResolvedConfig,
|
|
11
|
-
} from "../SQSClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ReceiveMessageCommandInput extends ReceiveMessageRequest {}
|
|
15
8
|
export interface ReceiveMessageCommandOutput
|
|
16
9
|
extends ReceiveMessageResult,
|
|
@@ -21,22 +14,20 @@ declare const ReceiveMessageCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ReceiveMessageCommandInput,
|
|
23
16
|
ReceiveMessageCommandOutput,
|
|
24
|
-
SQSClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SQSClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: ReceiveMessageCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ReceiveMessageCommandInput,
|
|
32
25
|
ReceiveMessageCommandOutput,
|
|
33
|
-
SQSClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SQSClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class ReceiveMessageCommand extends ReceiveMessageCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { RemovePermissionRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface RemovePermissionCommandInput extends RemovePermissionRequest {}
|
|
12
5
|
export interface RemovePermissionCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const RemovePermissionCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const RemovePermissionCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
RemovePermissionCommandInput,
|
|
18
11
|
RemovePermissionCommandOutput,
|
|
19
|
-
SQSClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").SQSClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: RemovePermissionCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
RemovePermissionCommandInput,
|
|
27
20
|
RemovePermissionCommandOutput,
|
|
28
|
-
SQSClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").SQSClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class RemovePermissionCommand extends RemovePermissionCommand_base {
|
|
37
28
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
SendMessageBatchRequest,
|
|
5
4
|
SendMessageBatchResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SQSClientResolvedConfig,
|
|
11
|
-
} from "../SQSClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface SendMessageBatchCommandInput extends SendMessageBatchRequest {}
|
|
15
8
|
export interface SendMessageBatchCommandOutput
|
|
16
9
|
extends SendMessageBatchResult,
|
|
@@ -21,22 +14,20 @@ declare const SendMessageBatchCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
SendMessageBatchCommandInput,
|
|
23
16
|
SendMessageBatchCommandOutput,
|
|
24
|
-
SQSClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SQSClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: SendMessageBatchCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
SendMessageBatchCommandInput,
|
|
32
25
|
SendMessageBatchCommandOutput,
|
|
33
|
-
SQSClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SQSClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class SendMessageBatchCommand extends SendMessageBatchCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { SendMessageRequest, SendMessageResult } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface SendMessageCommandInput extends SendMessageRequest {}
|
|
12
5
|
export interface SendMessageCommandOutput
|
|
13
6
|
extends SendMessageResult,
|
|
@@ -18,22 +11,20 @@ declare const SendMessageCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
SendMessageCommandInput,
|
|
20
13
|
SendMessageCommandOutput,
|
|
21
|
-
SQSClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").SQSClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: SendMessageCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
SendMessageCommandInput,
|
|
29
22
|
SendMessageCommandOutput,
|
|
30
|
-
SQSClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").SQSClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class SendMessageCommand extends SendMessageCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { SetQueueAttributesRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface SetQueueAttributesCommandInput
|
|
12
5
|
extends SetQueueAttributesRequest {}
|
|
13
6
|
export interface SetQueueAttributesCommandOutput extends __MetadataBearer {}
|
|
@@ -17,22 +10,20 @@ declare const SetQueueAttributesCommand_base: {
|
|
|
17
10
|
): import("@smithy/core/client").CommandImpl<
|
|
18
11
|
SetQueueAttributesCommandInput,
|
|
19
12
|
SetQueueAttributesCommandOutput,
|
|
20
|
-
SQSClientResolvedConfig,
|
|
21
|
-
ServiceInputTypes,
|
|
22
|
-
ServiceOutputTypes
|
|
13
|
+
import("..").SQSClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
23
16
|
>;
|
|
24
17
|
new (
|
|
25
18
|
input: SetQueueAttributesCommandInput
|
|
26
19
|
): import("@smithy/core/client").CommandImpl<
|
|
27
20
|
SetQueueAttributesCommandInput,
|
|
28
21
|
SetQueueAttributesCommandOutput,
|
|
29
|
-
SQSClientResolvedConfig,
|
|
30
|
-
ServiceInputTypes,
|
|
31
|
-
ServiceOutputTypes
|
|
22
|
+
import("..").SQSClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
32
25
|
>;
|
|
33
|
-
getEndpointParameterInstructions():
|
|
34
|
-
[x: string]: unknown;
|
|
35
|
-
};
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
36
27
|
};
|
|
37
28
|
export declare class SetQueueAttributesCommand extends SetQueueAttributesCommand_base {
|
|
38
29
|
protected static __types: {
|