@aws-sdk/client-sqs 3.948.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist-cjs/index.js +378 -289
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/AddPermissionCommand.js +2 -2
  4. package/dist-es/commands/CancelMessageMoveTaskCommand.js +2 -2
  5. package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +2 -2
  6. package/dist-es/commands/ChangeMessageVisibilityCommand.js +2 -2
  7. package/dist-es/commands/CreateQueueCommand.js +2 -2
  8. package/dist-es/commands/DeleteMessageBatchCommand.js +2 -2
  9. package/dist-es/commands/DeleteMessageCommand.js +2 -2
  10. package/dist-es/commands/DeleteQueueCommand.js +2 -2
  11. package/dist-es/commands/GetQueueAttributesCommand.js +2 -2
  12. package/dist-es/commands/GetQueueUrlCommand.js +2 -2
  13. package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +2 -2
  14. package/dist-es/commands/ListMessageMoveTasksCommand.js +2 -2
  15. package/dist-es/commands/ListQueueTagsCommand.js +2 -2
  16. package/dist-es/commands/ListQueuesCommand.js +2 -2
  17. package/dist-es/commands/PurgeQueueCommand.js +2 -2
  18. package/dist-es/commands/ReceiveMessageCommand.js +2 -2
  19. package/dist-es/commands/RemovePermissionCommand.js +2 -2
  20. package/dist-es/commands/SendMessageBatchCommand.js +2 -2
  21. package/dist-es/commands/SendMessageCommand.js +2 -2
  22. package/dist-es/commands/SetQueueAttributesCommand.js +2 -2
  23. package/dist-es/commands/StartMessageMoveTaskCommand.js +2 -2
  24. package/dist-es/commands/TagQueueCommand.js +2 -2
  25. package/dist-es/commands/UntagQueueCommand.js +2 -2
  26. package/dist-es/index.js +1 -0
  27. package/dist-es/runtimeConfig.shared.js +7 -6
  28. package/dist-es/schemas/schemas_0.js +189 -200
  29. package/dist-types/SQSClient.d.ts +1 -10
  30. package/dist-types/index.d.ts +1 -0
  31. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  32. package/dist-types/runtimeConfig.d.ts +6 -2
  33. package/dist-types/runtimeConfig.native.d.ts +6 -2
  34. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  35. package/dist-types/schemas/schemas_0.d.ts +101 -125
  36. package/dist-types/ts3.4/SQSClient.d.ts +0 -4
  37. package/dist-types/ts3.4/index.d.ts +1 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +100 -126
  43. package/package.json +36 -36
@@ -6,7 +6,7 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
6
6
  import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
7
7
  import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
8
8
  import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
9
- import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ClientProtocol, type Decoder as __Decoder, type Encoder as __Encoder, type HttpHandlerOptions as __HttpHandlerOptions, type HttpRequest, type HttpResponse, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, ChecksumConstructor as __ChecksumConstructor, HashConstructor as __HashConstructor, Provider, UserAgent as __UserAgent } from "@smithy/types";
9
+ import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type Decoder as __Decoder, type Encoder as __Encoder, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, ChecksumConstructor as __ChecksumConstructor, HashConstructor as __HashConstructor, Provider, UserAgent as __UserAgent } from "@smithy/types";
10
10
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
11
11
  import { AddPermissionCommandInput, AddPermissionCommandOutput } from "./commands/AddPermissionCommand";
12
12
  import { CancelMessageMoveTaskCommandInput, CancelMessageMoveTaskCommandOutput } from "./commands/CancelMessageMoveTaskCommand";
@@ -170,15 +170,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
170
170
  * Optional extensions
171
171
  */
172
172
  extensions?: RuntimeExtension[];
173
- /**
174
- * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
175
- * may be overridden. A default will always be set by the client.
176
- * Available options depend on the service's supported protocols and will not be validated by
177
- * the client.
178
- * @alpha
179
- *
180
- */
181
- protocol?: ClientProtocol<HttpRequest, HttpResponse>;
182
173
  /**
183
174
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
184
175
  */
@@ -79,6 +79,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
79
79
  export type { RuntimeExtension } from "./runtimeExtensions";
80
80
  export type { SQSExtensionConfiguration } from "./extensionConfiguration";
81
81
  export * from "./commands";
82
+ export * from "./schemas/schemas_0";
82
83
  export * from "./pagination";
83
84
  export * from "./models/enums";
84
85
  export * from "./models/errors";
@@ -18,8 +18,13 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
18
18
  streamCollector: import("@smithy/types").StreamCollector;
19
19
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
20
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
21
- apiVersion: string;
22
21
  cacheMiddleware?: boolean | undefined;
22
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
23
+ protocolSettings: {
24
+ defaultNamespace?: string;
25
+ [setting: string]: unknown;
26
+ };
27
+ apiVersion: string;
23
28
  urlParser: import("@smithy/types").UrlParser;
24
29
  base64Decoder: import("@smithy/types").Decoder;
25
30
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -30,7 +35,6 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
30
35
  profile?: string;
31
36
  logger: import("@smithy/types").Logger;
32
37
  extensions: import("./runtimeExtensions").RuntimeExtension[];
33
- protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
38
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
39
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
36
40
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -21,8 +21,13 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
21
21
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
23
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
24
- apiVersion: string;
25
24
  cacheMiddleware?: boolean | undefined;
25
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
26
+ protocolSettings: {
27
+ defaultNamespace?: string;
28
+ [setting: string]: unknown;
29
+ };
30
+ apiVersion: string;
26
31
  urlParser: import("@smithy/types").UrlParser;
27
32
  base64Decoder: import("@smithy/types").Decoder;
28
33
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -33,7 +38,6 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
33
38
  profile?: string;
34
39
  logger: import("@smithy/types").Logger;
35
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
36
- protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
37
41
  customUserAgent?: string | import("@smithy/types").UserAgent;
38
42
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
39
43
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
6
6
  runtime: string;
7
7
  sha256: import("@smithy/types").HashConstructor;
8
8
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
- apiVersion: string;
10
9
  cacheMiddleware?: boolean;
10
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
11
+ protocolSettings: {
12
+ defaultNamespace?: string;
13
+ [setting: string]: unknown;
14
+ };
15
+ apiVersion: string;
11
16
  urlParser: import("@smithy/types").UrlParser;
12
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
18
  streamCollector: import("@smithy/types").StreamCollector;
@@ -28,7 +33,6 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
28
33
  retryMode: string | import("@smithy/types").Provider<string>;
29
34
  logger: import("@smithy/types").Logger;
30
35
  extensions: import("./runtimeExtensions").RuntimeExtension[];
31
- protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
36
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
33
37
  customUserAgent?: string | import("@smithy/types").UserAgent;
34
38
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -1,3 +1,4 @@
1
+ import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
1
2
  import type { SQSClientConfig } from "./SQSClient";
2
3
  /**
3
4
  * @internal
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
14
15
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
15
16
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
17
  logger: import("@smithy/types").Logger;
17
- protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
18
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsJson1_0Protocol;
19
+ protocolSettings: {
20
+ [setting: string]: unknown;
21
+ defaultNamespace?: string;
22
+ };
18
23
  serviceId: string;
19
24
  urlParser: import("@smithy/types").UrlParser;
20
25
  utf8Decoder: import("@smithy/types").Decoder;
@@ -1,125 +1,101 @@
1
- import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
- export declare var AddPermissionRequest: StaticStructureSchema;
3
- export declare var BatchEntryIdsNotDistinct: StaticErrorSchema;
4
- export declare var BatchRequestTooLong: StaticErrorSchema;
5
- export declare var BatchResultErrorEntry: StaticStructureSchema;
6
- export declare var CancelMessageMoveTaskRequest: StaticStructureSchema;
7
- export declare var CancelMessageMoveTaskResult: StaticStructureSchema;
8
- export declare var ChangeMessageVisibilityBatchRequest: StaticStructureSchema;
9
- export declare var ChangeMessageVisibilityBatchRequestEntry: StaticStructureSchema;
10
- export declare var ChangeMessageVisibilityBatchResult: StaticStructureSchema;
11
- export declare var ChangeMessageVisibilityBatchResultEntry: StaticStructureSchema;
12
- export declare var ChangeMessageVisibilityRequest: StaticStructureSchema;
13
- export declare var CreateQueueRequest: StaticStructureSchema;
14
- export declare var CreateQueueResult: StaticStructureSchema;
15
- export declare var DeleteMessageBatchRequest: StaticStructureSchema;
16
- export declare var DeleteMessageBatchRequestEntry: StaticStructureSchema;
17
- export declare var DeleteMessageBatchResult: StaticStructureSchema;
18
- export declare var DeleteMessageBatchResultEntry: StaticStructureSchema;
19
- export declare var DeleteMessageRequest: StaticStructureSchema;
20
- export declare var DeleteQueueRequest: StaticStructureSchema;
21
- export declare var EmptyBatchRequest: StaticErrorSchema;
22
- export declare var GetQueueAttributesRequest: StaticStructureSchema;
23
- export declare var GetQueueAttributesResult: StaticStructureSchema;
24
- export declare var GetQueueUrlRequest: StaticStructureSchema;
25
- export declare var GetQueueUrlResult: StaticStructureSchema;
26
- export declare var InvalidAddress: StaticErrorSchema;
27
- export declare var InvalidAttributeName: StaticErrorSchema;
28
- export declare var InvalidAttributeValue: StaticErrorSchema;
29
- export declare var InvalidBatchEntryId: StaticErrorSchema;
30
- export declare var InvalidIdFormat: StaticErrorSchema;
31
- export declare var InvalidMessageContents: StaticErrorSchema;
32
- export declare var InvalidSecurity: StaticErrorSchema;
33
- export declare var KmsAccessDenied: StaticErrorSchema;
34
- export declare var KmsDisabled: StaticErrorSchema;
35
- export declare var KmsInvalidKeyUsage: StaticErrorSchema;
36
- export declare var KmsInvalidState: StaticErrorSchema;
37
- export declare var KmsNotFound: StaticErrorSchema;
38
- export declare var KmsOptInRequired: StaticErrorSchema;
39
- export declare var KmsThrottled: StaticErrorSchema;
40
- export declare var ListDeadLetterSourceQueuesRequest: StaticStructureSchema;
41
- export declare var ListDeadLetterSourceQueuesResult: StaticStructureSchema;
42
- export declare var ListMessageMoveTasksRequest: StaticStructureSchema;
43
- export declare var ListMessageMoveTasksResult: StaticStructureSchema;
44
- export declare var ListMessageMoveTasksResultEntry: StaticStructureSchema;
45
- export declare var ListQueuesRequest: StaticStructureSchema;
46
- export declare var ListQueuesResult: StaticStructureSchema;
47
- export declare var ListQueueTagsRequest: StaticStructureSchema;
48
- export declare var ListQueueTagsResult: StaticStructureSchema;
49
- export declare var Message: StaticStructureSchema;
50
- export declare var MessageAttributeValue: StaticStructureSchema;
51
- export declare var MessageNotInflight: StaticErrorSchema;
52
- export declare var MessageSystemAttributeValue: StaticStructureSchema;
53
- export declare var OverLimit: StaticErrorSchema;
54
- export declare var PurgeQueueInProgress: StaticErrorSchema;
55
- export declare var PurgeQueueRequest: StaticStructureSchema;
56
- export declare var QueueDeletedRecently: StaticErrorSchema;
57
- export declare var QueueDoesNotExist: StaticErrorSchema;
58
- export declare var QueueNameExists: StaticErrorSchema;
59
- export declare var ReceiptHandleIsInvalid: StaticErrorSchema;
60
- export declare var ReceiveMessageRequest: StaticStructureSchema;
61
- export declare var ReceiveMessageResult: StaticStructureSchema;
62
- export declare var RemovePermissionRequest: StaticStructureSchema;
63
- export declare var RequestThrottled: StaticErrorSchema;
64
- export declare var ResourceNotFoundException: StaticErrorSchema;
65
- export declare var SendMessageBatchRequest: StaticStructureSchema;
66
- export declare var SendMessageBatchRequestEntry: StaticStructureSchema;
67
- export declare var SendMessageBatchResult: StaticStructureSchema;
68
- export declare var SendMessageBatchResultEntry: StaticStructureSchema;
69
- export declare var SendMessageRequest: StaticStructureSchema;
70
- export declare var SendMessageResult: StaticStructureSchema;
71
- export declare var SetQueueAttributesRequest: StaticStructureSchema;
72
- export declare var StartMessageMoveTaskRequest: StaticStructureSchema;
73
- export declare var StartMessageMoveTaskResult: StaticStructureSchema;
74
- export declare var TagQueueRequest: StaticStructureSchema;
75
- export declare var TooManyEntriesInBatchRequest: StaticErrorSchema;
76
- export declare var UnsupportedOperation: StaticErrorSchema;
77
- export declare var UntagQueueRequest: StaticStructureSchema;
78
- export declare var __Unit: "unit";
79
- export declare var SQSServiceException: StaticErrorSchema;
80
- export declare var ActionNameList: number;
81
- export declare var AttributeNameList: number;
82
- export declare var AWSAccountIdList: number;
83
- export declare var BatchResultErrorEntryList: StaticListSchema;
84
- export declare var BinaryList: StaticListSchema;
85
- export declare var ChangeMessageVisibilityBatchRequestEntryList: StaticListSchema;
86
- export declare var ChangeMessageVisibilityBatchResultEntryList: StaticListSchema;
87
- export declare var DeleteMessageBatchRequestEntryList: StaticListSchema;
88
- export declare var DeleteMessageBatchResultEntryList: StaticListSchema;
89
- export declare var ListMessageMoveTasksResultEntryList: StaticListSchema;
90
- export declare var MessageAttributeNameList: number;
91
- export declare var MessageList: StaticListSchema;
92
- export declare var MessageSystemAttributeList: number;
93
- export declare var QueueUrlList: number;
94
- export declare var SendMessageBatchRequestEntryList: StaticListSchema;
95
- export declare var SendMessageBatchResultEntryList: StaticListSchema;
96
- export declare var StringList: StaticListSchema;
97
- export declare var TagKeyList: number;
98
- export declare var MessageBodyAttributeMap: StaticMapSchema;
99
- export declare var MessageBodySystemAttributeMap: StaticMapSchema;
100
- export declare var MessageSystemAttributeMap: StaticMapSchema;
101
- export declare var QueueAttributeMap: StaticMapSchema;
102
- export declare var TagMap: StaticMapSchema;
103
- export declare var AddPermission: StaticOperationSchema;
104
- export declare var CancelMessageMoveTask: StaticOperationSchema;
105
- export declare var ChangeMessageVisibility: StaticOperationSchema;
106
- export declare var ChangeMessageVisibilityBatch: StaticOperationSchema;
107
- export declare var CreateQueue: StaticOperationSchema;
108
- export declare var DeleteMessage: StaticOperationSchema;
109
- export declare var DeleteMessageBatch: StaticOperationSchema;
110
- export declare var DeleteQueue: StaticOperationSchema;
111
- export declare var GetQueueAttributes: StaticOperationSchema;
112
- export declare var GetQueueUrl: StaticOperationSchema;
113
- export declare var ListDeadLetterSourceQueues: StaticOperationSchema;
114
- export declare var ListMessageMoveTasks: StaticOperationSchema;
115
- export declare var ListQueues: StaticOperationSchema;
116
- export declare var ListQueueTags: StaticOperationSchema;
117
- export declare var PurgeQueue: StaticOperationSchema;
118
- export declare var ReceiveMessage: StaticOperationSchema;
119
- export declare var RemovePermission: StaticOperationSchema;
120
- export declare var SendMessage: StaticOperationSchema;
121
- export declare var SendMessageBatch: StaticOperationSchema;
122
- export declare var SetQueueAttributes: StaticOperationSchema;
123
- export declare var StartMessageMoveTask: StaticOperationSchema;
124
- export declare var TagQueue: StaticOperationSchema;
125
- export declare var UntagQueue: StaticOperationSchema;
1
+ import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var AddPermissionRequest$: StaticStructureSchema;
3
+ export declare var BatchEntryIdsNotDistinct$: StaticErrorSchema;
4
+ export declare var BatchRequestTooLong$: StaticErrorSchema;
5
+ export declare var BatchResultErrorEntry$: StaticStructureSchema;
6
+ export declare var CancelMessageMoveTaskRequest$: StaticStructureSchema;
7
+ export declare var CancelMessageMoveTaskResult$: StaticStructureSchema;
8
+ export declare var ChangeMessageVisibilityBatchRequest$: StaticStructureSchema;
9
+ export declare var ChangeMessageVisibilityBatchRequestEntry$: StaticStructureSchema;
10
+ export declare var ChangeMessageVisibilityBatchResult$: StaticStructureSchema;
11
+ export declare var ChangeMessageVisibilityBatchResultEntry$: StaticStructureSchema;
12
+ export declare var ChangeMessageVisibilityRequest$: StaticStructureSchema;
13
+ export declare var CreateQueueRequest$: StaticStructureSchema;
14
+ export declare var CreateQueueResult$: StaticStructureSchema;
15
+ export declare var DeleteMessageBatchRequest$: StaticStructureSchema;
16
+ export declare var DeleteMessageBatchRequestEntry$: StaticStructureSchema;
17
+ export declare var DeleteMessageBatchResult$: StaticStructureSchema;
18
+ export declare var DeleteMessageBatchResultEntry$: StaticStructureSchema;
19
+ export declare var DeleteMessageRequest$: StaticStructureSchema;
20
+ export declare var DeleteQueueRequest$: StaticStructureSchema;
21
+ export declare var EmptyBatchRequest$: StaticErrorSchema;
22
+ export declare var GetQueueAttributesRequest$: StaticStructureSchema;
23
+ export declare var GetQueueAttributesResult$: StaticStructureSchema;
24
+ export declare var GetQueueUrlRequest$: StaticStructureSchema;
25
+ export declare var GetQueueUrlResult$: StaticStructureSchema;
26
+ export declare var InvalidAddress$: StaticErrorSchema;
27
+ export declare var InvalidAttributeName$: StaticErrorSchema;
28
+ export declare var InvalidAttributeValue$: StaticErrorSchema;
29
+ export declare var InvalidBatchEntryId$: StaticErrorSchema;
30
+ export declare var InvalidIdFormat$: StaticErrorSchema;
31
+ export declare var InvalidMessageContents$: StaticErrorSchema;
32
+ export declare var InvalidSecurity$: StaticErrorSchema;
33
+ export declare var KmsAccessDenied$: StaticErrorSchema;
34
+ export declare var KmsDisabled$: StaticErrorSchema;
35
+ export declare var KmsInvalidKeyUsage$: StaticErrorSchema;
36
+ export declare var KmsInvalidState$: StaticErrorSchema;
37
+ export declare var KmsNotFound$: StaticErrorSchema;
38
+ export declare var KmsOptInRequired$: StaticErrorSchema;
39
+ export declare var KmsThrottled$: StaticErrorSchema;
40
+ export declare var ListDeadLetterSourceQueuesRequest$: StaticStructureSchema;
41
+ export declare var ListDeadLetterSourceQueuesResult$: StaticStructureSchema;
42
+ export declare var ListMessageMoveTasksRequest$: StaticStructureSchema;
43
+ export declare var ListMessageMoveTasksResult$: StaticStructureSchema;
44
+ export declare var ListMessageMoveTasksResultEntry$: StaticStructureSchema;
45
+ export declare var ListQueuesRequest$: StaticStructureSchema;
46
+ export declare var ListQueuesResult$: StaticStructureSchema;
47
+ export declare var ListQueueTagsRequest$: StaticStructureSchema;
48
+ export declare var ListQueueTagsResult$: StaticStructureSchema;
49
+ export declare var Message$: StaticStructureSchema;
50
+ export declare var MessageAttributeValue$: StaticStructureSchema;
51
+ export declare var MessageNotInflight$: StaticErrorSchema;
52
+ export declare var MessageSystemAttributeValue$: StaticStructureSchema;
53
+ export declare var OverLimit$: StaticErrorSchema;
54
+ export declare var PurgeQueueInProgress$: StaticErrorSchema;
55
+ export declare var PurgeQueueRequest$: StaticStructureSchema;
56
+ export declare var QueueDeletedRecently$: StaticErrorSchema;
57
+ export declare var QueueDoesNotExist$: StaticErrorSchema;
58
+ export declare var QueueNameExists$: StaticErrorSchema;
59
+ export declare var ReceiptHandleIsInvalid$: StaticErrorSchema;
60
+ export declare var ReceiveMessageRequest$: StaticStructureSchema;
61
+ export declare var ReceiveMessageResult$: StaticStructureSchema;
62
+ export declare var RemovePermissionRequest$: StaticStructureSchema;
63
+ export declare var RequestThrottled$: StaticErrorSchema;
64
+ export declare var ResourceNotFoundException$: StaticErrorSchema;
65
+ export declare var SendMessageBatchRequest$: StaticStructureSchema;
66
+ export declare var SendMessageBatchRequestEntry$: StaticStructureSchema;
67
+ export declare var SendMessageBatchResult$: StaticStructureSchema;
68
+ export declare var SendMessageBatchResultEntry$: StaticStructureSchema;
69
+ export declare var SendMessageRequest$: StaticStructureSchema;
70
+ export declare var SendMessageResult$: StaticStructureSchema;
71
+ export declare var SetQueueAttributesRequest$: StaticStructureSchema;
72
+ export declare var StartMessageMoveTaskRequest$: StaticStructureSchema;
73
+ export declare var StartMessageMoveTaskResult$: StaticStructureSchema;
74
+ export declare var TagQueueRequest$: StaticStructureSchema;
75
+ export declare var TooManyEntriesInBatchRequest$: StaticErrorSchema;
76
+ export declare var UnsupportedOperation$: StaticErrorSchema;
77
+ export declare var UntagQueueRequest$: StaticStructureSchema;
78
+ export declare var SQSServiceException$: StaticErrorSchema;
79
+ export declare var AddPermission$: StaticOperationSchema;
80
+ export declare var CancelMessageMoveTask$: StaticOperationSchema;
81
+ export declare var ChangeMessageVisibility$: StaticOperationSchema;
82
+ export declare var ChangeMessageVisibilityBatch$: StaticOperationSchema;
83
+ export declare var CreateQueue$: StaticOperationSchema;
84
+ export declare var DeleteMessage$: StaticOperationSchema;
85
+ export declare var DeleteMessageBatch$: StaticOperationSchema;
86
+ export declare var DeleteQueue$: StaticOperationSchema;
87
+ export declare var GetQueueAttributes$: StaticOperationSchema;
88
+ export declare var GetQueueUrl$: StaticOperationSchema;
89
+ export declare var ListDeadLetterSourceQueues$: StaticOperationSchema;
90
+ export declare var ListMessageMoveTasks$: StaticOperationSchema;
91
+ export declare var ListQueues$: StaticOperationSchema;
92
+ export declare var ListQueueTags$: StaticOperationSchema;
93
+ export declare var PurgeQueue$: StaticOperationSchema;
94
+ export declare var ReceiveMessage$: StaticOperationSchema;
95
+ export declare var RemovePermission$: StaticOperationSchema;
96
+ export declare var SendMessage$: StaticOperationSchema;
97
+ export declare var SendMessageBatch$: StaticOperationSchema;
98
+ export declare var SetQueueAttributes$: StaticOperationSchema;
99
+ export declare var StartMessageMoveTask$: StaticOperationSchema;
100
+ export declare var TagQueue$: StaticOperationSchema;
101
+ export declare var UntagQueue$: StaticOperationSchema;
@@ -32,12 +32,9 @@ import {
32
32
  import {
33
33
  BodyLengthCalculator as __BodyLengthCalculator,
34
34
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
35
- ClientProtocol,
36
35
  Decoder as __Decoder,
37
36
  Encoder as __Encoder,
38
37
  HttpHandlerOptions as __HttpHandlerOptions,
39
- HttpRequest,
40
- HttpResponse,
41
38
  Logger as __Logger,
42
39
  Provider as __Provider,
43
40
  StreamCollector as __StreamCollector,
@@ -224,7 +221,6 @@ export interface ClientDefaults
224
221
  retryMode?: string | __Provider<string>;
225
222
  logger?: __Logger;
226
223
  extensions?: RuntimeExtension[];
227
- protocol?: ClientProtocol<HttpRequest, HttpResponse>;
228
224
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
229
225
  }
230
226
  export type SQSClientConfigType = Partial<
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SQSExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export * from "./schemas/schemas_0";
7
8
  export * from "./pagination";
8
9
  export * from "./models/enums";
9
10
  export * from "./models/errors";
@@ -27,8 +27,16 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
27
27
  (boolean | import("@smithy/types").Provider<boolean | undefined>);
28
28
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
29
29
  (boolean | import("@smithy/types").Provider<boolean | undefined>);
30
- apiVersion: string;
31
30
  cacheMiddleware?: boolean | undefined;
31
+ protocol:
32
+ | import("@smithy/types").ClientProtocol<any, any>
33
+ | import("@smithy/types").ClientProtocolCtor<any, any>
34
+ | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
35
+ protocolSettings: {
36
+ defaultNamespace?: string;
37
+ [setting: string]: unknown;
38
+ };
39
+ apiVersion: string;
32
40
  urlParser: import("@smithy/types").UrlParser;
33
41
  base64Decoder: import("@smithy/types").Decoder;
34
42
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -39,10 +47,6 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
39
47
  profile?: string;
40
48
  logger: import("@smithy/types").Logger;
41
49
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
- protocol: import("@smithy/types").ClientProtocol<
43
- import("@smithy/types").HttpRequest,
44
- import("@smithy/types").HttpResponse
45
- >;
46
50
  customUserAgent?: string | import("@smithy/types").UserAgent;
47
51
  userAgentAppId?:
48
52
  | string
@@ -28,8 +28,16 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
28
28
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
29
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
30
30
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
31
- apiVersion: string;
32
31
  cacheMiddleware?: boolean | undefined;
32
+ protocol:
33
+ | import("@smithy/types").ClientProtocol<any, any>
34
+ | import("@smithy/types").ClientProtocolCtor<any, any>
35
+ | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
36
+ protocolSettings: {
37
+ defaultNamespace?: string;
38
+ [setting: string]: unknown;
39
+ };
40
+ apiVersion: string;
33
41
  urlParser: import("@smithy/types").UrlParser;
34
42
  base64Decoder: import("@smithy/types").Decoder;
35
43
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -40,10 +48,6 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
40
48
  profile?: string;
41
49
  logger: import("@smithy/types").Logger;
42
50
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
- protocol: import("@smithy/types").ClientProtocol<
44
- import("@smithy/types").HttpRequest,
45
- import("@smithy/types").HttpResponse
46
- >;
47
51
  customUserAgent?: string | import("@smithy/types").UserAgent;
48
52
  retryStrategy?:
49
53
  | import("@smithy/types").RetryStrategy
@@ -8,8 +8,16 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
8
8
  | Record<string, unknown>
9
9
  | import("@smithy/protocol-http").HttpHandler<any>
10
10
  | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
- apiVersion: string;
12
11
  cacheMiddleware?: boolean;
12
+ protocol:
13
+ | import("@smithy/types").ClientProtocol<any, any>
14
+ | import("@smithy/types").ClientProtocolCtor<any, any>
15
+ | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
16
+ protocolSettings: {
17
+ defaultNamespace?: string;
18
+ [setting: string]: unknown;
19
+ };
20
+ apiVersion: string;
13
21
  urlParser: import("@smithy/types").UrlParser;
14
22
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
23
  streamCollector: import("@smithy/types").StreamCollector;
@@ -38,10 +46,6 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
38
46
  retryMode: string | import("@smithy/types").Provider<string>;
39
47
  logger: import("@smithy/types").Logger;
40
48
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
- protocol: import("@smithy/types").ClientProtocol<
42
- import("@smithy/types").HttpRequest,
43
- import("@smithy/types").HttpResponse
44
- >;
45
49
  defaultsMode:
46
50
  | import("@smithy/smithy-client").DefaultsMode
47
51
  | import("@smithy/types").Provider<
@@ -1,3 +1,4 @@
1
+ import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
1
2
  import { SQSClientConfig } from "./SQSClient";
2
3
  export declare const getRuntimeConfig: (config: SQSClientConfig) => {
3
4
  apiVersion: string;
@@ -14,10 +15,14 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
14
15
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
15
16
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
17
  logger: import("@smithy/types").Logger;
17
- protocol: import("@smithy/types").ClientProtocol<
18
- import("@smithy/types").HttpRequest,
19
- import("@smithy/types").HttpResponse
20
- >;
18
+ protocol:
19
+ | import("@smithy/types").ClientProtocol<any, any>
20
+ | import("@smithy/types").ClientProtocolCtor<any, any>
21
+ | typeof AwsJson1_0Protocol;
22
+ protocolSettings: {
23
+ [setting: string]: unknown;
24
+ defaultNamespace?: string;
25
+ };
21
26
  serviceId: string;
22
27
  urlParser: import("@smithy/types").UrlParser;
23
28
  utf8Decoder: import("@smithy/types").Decoder;