@aws-sdk/client-sqs 3.533.0 → 3.536.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-types/SQS.d.ts +2 -1
- package/dist-types/SQSClient.d.ts +1 -1
- package/dist-types/commands/AddPermissionCommand.d.ts +2 -1
- package/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +2 -1
- package/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +2 -1
- package/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +2 -1
- package/dist-types/commands/CreateQueueCommand.d.ts +2 -1
- package/dist-types/commands/DeleteMessageBatchCommand.d.ts +2 -1
- package/dist-types/commands/DeleteMessageCommand.d.ts +2 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +2 -1
- package/dist-types/commands/GetQueueAttributesCommand.d.ts +2 -1
- package/dist-types/commands/GetQueueUrlCommand.d.ts +2 -1
- package/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +2 -1
- package/dist-types/commands/ListMessageMoveTasksCommand.d.ts +2 -1
- package/dist-types/commands/ListQueueTagsCommand.d.ts +2 -1
- package/dist-types/commands/ListQueuesCommand.d.ts +2 -1
- package/dist-types/commands/PurgeQueueCommand.d.ts +2 -1
- package/dist-types/commands/ReceiveMessageCommand.d.ts +2 -1
- package/dist-types/commands/RemovePermissionCommand.d.ts +2 -1
- package/dist-types/commands/SendMessageBatchCommand.d.ts +2 -1
- package/dist-types/commands/SendMessageCommand.d.ts +2 -1
- package/dist-types/commands/SetQueueAttributesCommand.d.ts +2 -1
- package/dist-types/commands/StartMessageMoveTaskCommand.d.ts +2 -1
- package/dist-types/commands/TagQueueCommand.d.ts +2 -1
- package/dist-types/commands/UntagQueueCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +199 -199
- package/dist-types/ts3.4/SQS.d.ts +1 -0
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CancelMessageMoveTaskCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListMessageMoveTasksCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartMessageMoveTaskCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +9 -0
- package/package.json +42 -42
|
@@ -249,6 +249,7 @@ export interface SQS {
|
|
|
249
249
|
options: __HttpHandlerOptions,
|
|
250
250
|
cb: (err: any, data?: ListMessageMoveTasksCommandOutput) => void
|
|
251
251
|
): void;
|
|
252
|
+
listQueues(): Promise<ListQueuesCommandOutput>;
|
|
252
253
|
listQueues(
|
|
253
254
|
args: ListQueuesCommandInput,
|
|
254
255
|
options?: __HttpHandlerOptions
|
|
@@ -19,6 +19,15 @@ declare const AddPermissionCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: AddPermissionCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
AddPermissionCommandInput,
|
|
26
|
+
AddPermissionCommandOutput,
|
|
27
|
+
SQSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class AddPermissionCommand extends AddPermissionCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CancelMessageMoveTaskCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CancelMessageMoveTaskCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CancelMessageMoveTaskCommandInput,
|
|
32
|
+
CancelMessageMoveTaskCommandOutput,
|
|
33
|
+
SQSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CancelMessageMoveTaskCommand extends CancelMessageMoveTaskCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ChangeMessageVisibilityBatchCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ChangeMessageVisibilityBatchCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ChangeMessageVisibilityBatchCommandInput,
|
|
32
|
+
ChangeMessageVisibilityBatchCommandOutput,
|
|
33
|
+
SQSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ChangeMessageVisibilityBatchCommand extends ChangeMessageVisibilityBatchCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ChangeMessageVisibilityCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: ChangeMessageVisibilityCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ChangeMessageVisibilityCommandInput,
|
|
28
|
+
ChangeMessageVisibilityCommandOutput,
|
|
29
|
+
SQSClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ChangeMessageVisibilityCommand extends ChangeMessageVisibilityCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const CreateQueueCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: CreateQueueCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
CreateQueueCommandInput,
|
|
28
|
+
CreateQueueCommandOutput,
|
|
29
|
+
SQSClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class CreateQueueCommand extends CreateQueueCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DeleteMessageBatchCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteMessageBatchCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteMessageBatchCommandInput,
|
|
32
|
+
DeleteMessageBatchCommandOutput,
|
|
33
|
+
SQSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DeleteMessageBatchCommand extends DeleteMessageBatchCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const DeleteMessageCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: DeleteMessageCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
DeleteMessageCommandInput,
|
|
26
|
+
DeleteMessageCommandOutput,
|
|
27
|
+
SQSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class DeleteMessageCommand extends DeleteMessageCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const DeleteQueueCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: DeleteQueueCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
DeleteQueueCommandInput,
|
|
26
|
+
DeleteQueueCommandOutput,
|
|
27
|
+
SQSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class DeleteQueueCommand extends DeleteQueueCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetQueueAttributesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetQueueAttributesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetQueueAttributesCommandInput,
|
|
32
|
+
GetQueueAttributesCommandOutput,
|
|
33
|
+
SQSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetQueueAttributesCommand extends GetQueueAttributesCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetQueueUrlCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetQueueUrlCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetQueueUrlCommandInput,
|
|
28
|
+
GetQueueUrlCommandOutput,
|
|
29
|
+
SQSClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetQueueUrlCommand extends GetQueueUrlCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListDeadLetterSourceQueuesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListDeadLetterSourceQueuesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListDeadLetterSourceQueuesCommandInput,
|
|
32
|
+
ListDeadLetterSourceQueuesCommandOutput,
|
|
33
|
+
SQSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListDeadLetterSourceQueuesCommand extends ListDeadLetterSourceQueuesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListMessageMoveTasksCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListMessageMoveTasksCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListMessageMoveTasksCommandInput,
|
|
32
|
+
ListMessageMoveTasksCommandOutput,
|
|
33
|
+
SQSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListMessageMoveTasksCommand extends ListMessageMoveTasksCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListQueueTagsCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: ListQueueTagsCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListQueueTagsCommandInput,
|
|
28
|
+
ListQueueTagsCommandOutput,
|
|
29
|
+
SQSClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListQueueTagsCommand extends ListQueueTagsCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListQueuesCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
...[input]: [] | [ListQueuesCommandInput]
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListQueuesCommandInput,
|
|
28
|
+
ListQueuesCommandOutput,
|
|
29
|
+
SQSClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListQueuesCommand extends ListQueuesCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const PurgeQueueCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: PurgeQueueCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
PurgeQueueCommandInput,
|
|
26
|
+
PurgeQueueCommandOutput,
|
|
27
|
+
SQSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class PurgeQueueCommand extends PurgeQueueCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const ReceiveMessageCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: ReceiveMessageCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ReceiveMessageCommandInput,
|
|
31
|
+
ReceiveMessageCommandOutput,
|
|
32
|
+
SQSClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class ReceiveMessageCommand extends ReceiveMessageCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const RemovePermissionCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: RemovePermissionCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
RemovePermissionCommandInput,
|
|
26
|
+
RemovePermissionCommandOutput,
|
|
27
|
+
SQSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class RemovePermissionCommand extends RemovePermissionCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const SendMessageBatchCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: SendMessageBatchCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
SendMessageBatchCommandInput,
|
|
31
|
+
SendMessageBatchCommandOutput,
|
|
32
|
+
SQSClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class SendMessageBatchCommand extends SendMessageBatchCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const SendMessageCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: SendMessageCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
SendMessageCommandInput,
|
|
28
|
+
SendMessageCommandOutput,
|
|
29
|
+
SQSClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class SendMessageCommand extends SendMessageCommand_base {}
|
|
@@ -20,6 +20,15 @@ declare const SetQueueAttributesCommand_base: {
|
|
|
20
20
|
ServiceInputTypes,
|
|
21
21
|
ServiceOutputTypes
|
|
22
22
|
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: SetQueueAttributesCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
SetQueueAttributesCommandInput,
|
|
27
|
+
SetQueueAttributesCommandOutput,
|
|
28
|
+
SQSClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
23
32
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
24
33
|
};
|
|
25
34
|
export declare class SetQueueAttributesCommand extends SetQueueAttributesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const StartMessageMoveTaskCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: StartMessageMoveTaskCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartMessageMoveTaskCommandInput,
|
|
32
|
+
StartMessageMoveTaskCommandOutput,
|
|
33
|
+
SQSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class StartMessageMoveTaskCommand extends StartMessageMoveTaskCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const TagQueueCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: TagQueueCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
TagQueueCommandInput,
|
|
26
|
+
TagQueueCommandOutput,
|
|
27
|
+
SQSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class TagQueueCommand extends TagQueueCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const UntagQueueCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: UntagQueueCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
UntagQueueCommandInput,
|
|
26
|
+
UntagQueueCommandOutput,
|
|
27
|
+
SQSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class UntagQueueCommand extends UntagQueueCommand_base {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sqs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sqs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.536.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sqs",
|
|
@@ -20,49 +20,49 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-sdk-sqs": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.
|
|
37
|
-
"@smithy/core": "^1.
|
|
38
|
-
"@smithy/fetch-http-handler": "^2.
|
|
39
|
-
"@smithy/hash-node": "^2.
|
|
40
|
-
"@smithy/invalid-dependency": "^2.
|
|
41
|
-
"@smithy/md5-js": "^2.
|
|
42
|
-
"@smithy/middleware-content-length": "^2.
|
|
43
|
-
"@smithy/middleware-endpoint": "^2.
|
|
44
|
-
"@smithy/middleware-retry": "^2.
|
|
45
|
-
"@smithy/middleware-serde": "^2.
|
|
46
|
-
"@smithy/middleware-stack": "^2.
|
|
47
|
-
"@smithy/node-config-provider": "^2.
|
|
48
|
-
"@smithy/node-http-handler": "^2.
|
|
49
|
-
"@smithy/protocol-http": "^3.
|
|
50
|
-
"@smithy/smithy-client": "^2.
|
|
51
|
-
"@smithy/types": "^2.
|
|
52
|
-
"@smithy/url-parser": "^2.
|
|
53
|
-
"@smithy/util-base64": "^2.
|
|
54
|
-
"@smithy/util-body-length-browser": "^2.
|
|
55
|
-
"@smithy/util-body-length-node": "^2.
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
58
|
-
"@smithy/util-endpoints": "^1.
|
|
59
|
-
"@smithy/util-middleware": "^2.
|
|
60
|
-
"@smithy/util-retry": "^2.
|
|
61
|
-
"@smithy/util-utf8": "^2.
|
|
62
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.535.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.535.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-sdk-sqs": "3.535.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.535.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
32
|
+
"@aws-sdk/types": "3.535.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
37
|
+
"@smithy/core": "^1.4.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
39
|
+
"@smithy/hash-node": "^2.2.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
41
|
+
"@smithy/md5-js": "^2.2.0",
|
|
42
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
44
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
45
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
46
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
47
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
48
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
49
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
50
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
51
|
+
"@smithy/types": "^2.12.0",
|
|
52
|
+
"@smithy/url-parser": "^2.2.0",
|
|
53
|
+
"@smithy/util-base64": "^2.3.0",
|
|
54
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
55
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
58
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
59
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
60
|
+
"@smithy/util-retry": "^2.2.0",
|
|
61
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
62
|
+
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
65
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
66
66
|
"@tsconfig/node14": "1.0.3",
|
|
67
67
|
"@types/node": "^14.14.31",
|
|
68
68
|
"concurrently": "7.0.0",
|