@aws-sdk/client-sqs 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SQSServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +211 -1
- package/dist-cjs/protocols/Aws_query.js +160 -460
- package/dist-es/index.js +1 -0
- package/dist-es/models/SQSServiceException.js +12 -0
- package/dist-es/models/models_0.js +194 -1
- package/dist-es/protocols/Aws_query.js +327 -467
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SQSServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +114 -49
- package/dist-types/ts3.4/SQS.d.ts +105 -0
- package/dist-types/ts3.4/SQSClient.d.ts +95 -0
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +20 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/SQSServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +651 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +62 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +39 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +40 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +35 -35
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { AddPermissionCommandInput, AddPermissionCommandOutput } from "../commands/AddPermissionCommand";
|
|
4
|
+
import { ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput } from "../commands/ChangeMessageVisibilityBatchCommand";
|
|
5
|
+
import { ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput } from "../commands/ChangeMessageVisibilityCommand";
|
|
6
|
+
import { CreateQueueCommandInput, CreateQueueCommandOutput } from "../commands/CreateQueueCommand";
|
|
7
|
+
import { DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput } from "../commands/DeleteMessageBatchCommand";
|
|
8
|
+
import { DeleteMessageCommandInput, DeleteMessageCommandOutput } from "../commands/DeleteMessageCommand";
|
|
9
|
+
import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "../commands/DeleteQueueCommand";
|
|
10
|
+
import { GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput } from "../commands/GetQueueAttributesCommand";
|
|
11
|
+
import { GetQueueUrlCommandInput, GetQueueUrlCommandOutput } from "../commands/GetQueueUrlCommand";
|
|
12
|
+
import { ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput } from "../commands/ListDeadLetterSourceQueuesCommand";
|
|
13
|
+
import { ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand";
|
|
14
|
+
import { ListQueueTagsCommandInput, ListQueueTagsCommandOutput } from "../commands/ListQueueTagsCommand";
|
|
15
|
+
import { PurgeQueueCommandInput, PurgeQueueCommandOutput } from "../commands/PurgeQueueCommand";
|
|
16
|
+
import { ReceiveMessageCommandInput, ReceiveMessageCommandOutput } from "../commands/ReceiveMessageCommand";
|
|
17
|
+
import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "../commands/RemovePermissionCommand";
|
|
18
|
+
import { SendMessageBatchCommandInput, SendMessageBatchCommandOutput } from "../commands/SendMessageBatchCommand";
|
|
19
|
+
import { SendMessageCommandInput, SendMessageCommandOutput } from "../commands/SendMessageCommand";
|
|
20
|
+
import { SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput } from "../commands/SetQueueAttributesCommand";
|
|
21
|
+
import { TagQueueCommandInput, TagQueueCommandOutput } from "../commands/TagQueueCommand";
|
|
22
|
+
import { UntagQueueCommandInput, UntagQueueCommandOutput } from "../commands/UntagQueueCommand";
|
|
23
|
+
export declare const serializeAws_queryAddPermissionCommand: (input: AddPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
export declare const serializeAws_queryChangeMessageVisibilityCommand: (input: ChangeMessageVisibilityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
+
export declare const serializeAws_queryChangeMessageVisibilityBatchCommand: (input: ChangeMessageVisibilityBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_queryCreateQueueCommand: (input: CreateQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
export declare const serializeAws_queryDeleteMessageCommand: (input: DeleteMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
export declare const serializeAws_queryDeleteMessageBatchCommand: (input: DeleteMessageBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
+
export declare const serializeAws_queryDeleteQueueCommand: (input: DeleteQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const serializeAws_queryGetQueueAttributesCommand: (input: GetQueueAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
export declare const serializeAws_queryGetQueueUrlCommand: (input: GetQueueUrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
export declare const serializeAws_queryListDeadLetterSourceQueuesCommand: (input: ListDeadLetterSourceQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
export declare const serializeAws_queryListQueuesCommand: (input: ListQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
export declare const serializeAws_queryListQueueTagsCommand: (input: ListQueueTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const serializeAws_queryPurgeQueueCommand: (input: PurgeQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
export declare const serializeAws_queryReceiveMessageCommand: (input: ReceiveMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
+
export declare const serializeAws_queryRemovePermissionCommand: (input: RemovePermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
export declare const serializeAws_querySendMessageCommand: (input: SendMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
+
export declare const serializeAws_querySendMessageBatchCommand: (input: SendMessageBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
+
export declare const serializeAws_querySetQueueAttributesCommand: (input: SetQueueAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const serializeAws_queryTagQueueCommand: (input: TagQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
export declare const serializeAws_queryUntagQueueCommand: (input: UntagQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
export declare const deserializeAws_queryAddPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddPermissionCommandOutput>;
|
|
44
|
+
export declare const deserializeAws_queryChangeMessageVisibilityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ChangeMessageVisibilityCommandOutput>;
|
|
45
|
+
export declare const deserializeAws_queryChangeMessageVisibilityBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ChangeMessageVisibilityBatchCommandOutput>;
|
|
46
|
+
export declare const deserializeAws_queryCreateQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQueueCommandOutput>;
|
|
47
|
+
export declare const deserializeAws_queryDeleteMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessageCommandOutput>;
|
|
48
|
+
export declare const deserializeAws_queryDeleteMessageBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessageBatchCommandOutput>;
|
|
49
|
+
export declare const deserializeAws_queryDeleteQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueueCommandOutput>;
|
|
50
|
+
export declare const deserializeAws_queryGetQueueAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueueAttributesCommandOutput>;
|
|
51
|
+
export declare const deserializeAws_queryGetQueueUrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueueUrlCommandOutput>;
|
|
52
|
+
export declare const deserializeAws_queryListDeadLetterSourceQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeadLetterSourceQueuesCommandOutput>;
|
|
53
|
+
export declare const deserializeAws_queryListQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueuesCommandOutput>;
|
|
54
|
+
export declare const deserializeAws_queryListQueueTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueueTagsCommandOutput>;
|
|
55
|
+
export declare const deserializeAws_queryPurgeQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PurgeQueueCommandOutput>;
|
|
56
|
+
export declare const deserializeAws_queryReceiveMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReceiveMessageCommandOutput>;
|
|
57
|
+
export declare const deserializeAws_queryRemovePermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemovePermissionCommandOutput>;
|
|
58
|
+
export declare const deserializeAws_querySendMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageCommandOutput>;
|
|
59
|
+
export declare const deserializeAws_querySendMessageBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageBatchCommandOutput>;
|
|
60
|
+
export declare const deserializeAws_querySetQueueAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetQueueAttributesCommandOutput>;
|
|
61
|
+
export declare const deserializeAws_queryTagQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagQueueCommandOutput>;
|
|
62
|
+
export declare const deserializeAws_queryUntagQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagQueueCommandOutput>;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { SQSClientConfig } from "./SQSClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
md5: import("@aws-sdk/types").HashConstructor;
|
|
14
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
22
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
25
|
+
disableHostPrefix: boolean;
|
|
26
|
+
logger: import("@aws-sdk/types").Logger;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
29
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
30
|
+
tls?: boolean | undefined;
|
|
31
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
33
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
34
|
+
signingEscapePath?: boolean | undefined;
|
|
35
|
+
systemClockOffset?: number | undefined;
|
|
36
|
+
signingRegion?: string | undefined;
|
|
37
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
38
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
39
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { HashConstructor as __HashConstructor } from "@aws-sdk/types";
|
|
3
|
+
import { SQSClientConfig } from "./SQSClient";
|
|
4
|
+
|
|
5
|
+
export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
|
+
md5: __HashConstructor;
|
|
15
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
sha256: __HashConstructor;
|
|
19
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
20
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
23
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
24
|
+
apiVersion: string;
|
|
25
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
30
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
31
|
+
tls?: boolean | undefined;
|
|
32
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
35
|
+
signingEscapePath?: boolean | undefined;
|
|
36
|
+
systemClockOffset?: number | undefined;
|
|
37
|
+
signingRegion?: string | undefined;
|
|
38
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
39
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
40
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { SQSClientConfig } from "./SQSClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
md5: import("@aws-sdk/types").HashConstructor;
|
|
26
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
27
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { SQSClientConfig } from "./SQSClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
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.53.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,44 +18,44 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/md5-js": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-sdk-sqs": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
52
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/md5-js": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-sdk-sqs": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
41
|
+
"@aws-sdk/types": "3.53.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
43
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
44
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
51
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
52
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
53
53
|
"entities": "2.2.0",
|
|
54
54
|
"fast-xml-parser": "3.19.0",
|
|
55
55
|
"tslib": "^2.3.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
58
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
59
59
|
"@tsconfig/recommended": "1.0.1",
|
|
60
60
|
"@types/node": "^12.7.5",
|
|
61
61
|
"concurrently": "7.0.0",
|