@aws-sdk/client-sqs 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/SQS.d.ts +344 -105
- package/dist-types/ts3.4/SQSClient.d.ts +224 -95
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/index.d.ts +20 -20
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SQSServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +452 -545
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +245 -62
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -39
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -40
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +36 -36
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { TagQueueRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface TagQueueCommandInput extends TagQueueRequest {}
|
|
15
|
+
export interface TagQueueCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class TagQueueCommand extends $Command<
|
|
17
|
+
TagQueueCommandInput,
|
|
18
|
+
TagQueueCommandOutput,
|
|
19
|
+
SQSClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: TagQueueCommandInput;
|
|
22
|
+
constructor(input: TagQueueCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: SQSClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<TagQueueCommandInput, TagQueueCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { UntagQueueRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface UntagQueueCommandInput extends UntagQueueRequest {}
|
|
15
|
+
export interface UntagQueueCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class UntagQueueCommand extends $Command<
|
|
17
|
+
UntagQueueCommandInput,
|
|
18
|
+
UntagQueueCommandOutput,
|
|
19
|
+
SQSClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: UntagQueueCommandInput;
|
|
22
|
+
constructor(input: UntagQueueCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: SQSClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<UntagQueueCommandInput, UntagQueueCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,20 +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";
|
|
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";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./SQS";
|
|
2
|
-
export * from "./SQSClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { SQSServiceException } from "./models/SQSServiceException";
|
|
1
|
+
export * from "./SQS";
|
|
2
|
+
export * from "./SQSClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { SQSServiceException } from "./models/SQSServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class SQSServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|