@aws-sdk/client-sqs 3.803.0 → 3.806.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/runtimeConfig.js +6 -6
- package/dist-es/runtimeConfig.js +6 -6
- package/dist-types/commands/AddPermissionCommand.d.ts +1 -1
- package/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +1 -1
- package/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +1 -1
- package/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +1 -1
- package/dist-types/commands/CreateQueueCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMessageBatchCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMessageCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/commands/GetQueueAttributesCommand.d.ts +1 -1
- package/dist-types/commands/GetQueueUrlCommand.d.ts +1 -1
- package/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +1 -1
- package/dist-types/commands/ListMessageMoveTasksCommand.d.ts +1 -1
- package/dist-types/commands/ListQueueTagsCommand.d.ts +1 -1
- package/dist-types/commands/PurgeQueueCommand.d.ts +1 -1
- package/dist-types/commands/ReceiveMessageCommand.d.ts +1 -1
- package/dist-types/commands/RemovePermissionCommand.d.ts +1 -1
- package/dist-types/commands/SendMessageBatchCommand.d.ts +1 -1
- package/dist-types/commands/SendMessageCommand.d.ts +1 -1
- package/dist-types/commands/SetQueueAttributesCommand.d.ts +1 -1
- package/dist-types/commands/StartMessageMoveTaskCommand.d.ts +1 -1
- package/dist-types/commands/TagQueueCommand.d.ts +1 -1
- package/dist-types/commands/UntagQueueCommand.d.ts +1 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -3
- package/dist-types/runtimeConfig.browser.d.ts +18 -18
- package/dist-types/runtimeConfig.d.ts +17 -17
- package/dist-types/runtimeConfig.native.d.ts +19 -19
- package/dist-types/runtimeConfig.shared.d.ts +3 -3
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CancelMessageMoveTaskCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMessageMoveTasksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartMessageMoveTaskCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +23 -33
- package/dist-types/ts3.4/runtimeConfig.d.ts +21 -30
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +24 -34
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/package.json +23 -23
|
@@ -23,13 +23,13 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
24
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
25
25
|
(0, core_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
26
|
-
const
|
|
26
|
+
const loaderConfig = { profile: config?.profile, logger: clientSharedValues.logger };
|
|
27
27
|
return {
|
|
28
28
|
...clientSharedValues,
|
|
29
29
|
...config,
|
|
30
30
|
runtime: "node",
|
|
31
31
|
defaultsMode,
|
|
32
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS,
|
|
32
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
33
33
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
34
34
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
35
35
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
@@ -37,7 +37,7 @@ const getRuntimeConfig = (config) => {
|
|
|
37
37
|
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
38
38
|
md5: config?.md5 ?? hash_node_1.Hash.bind(null, "md5"),
|
|
39
39
|
region: config?.region ??
|
|
40
|
-
(0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...
|
|
40
|
+
(0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
41
41
|
requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
42
42
|
retryMode: config?.retryMode ??
|
|
43
43
|
(0, node_config_provider_1.loadConfig)({
|
|
@@ -46,9 +46,9 @@ const getRuntimeConfig = (config) => {
|
|
|
46
46
|
}, config),
|
|
47
47
|
sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
|
|
48
48
|
streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
|
|
49
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS,
|
|
50
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS,
|
|
51
|
-
userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS,
|
|
49
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
50
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
51
|
+
userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
54
|
exports.getRuntimeConfig = getRuntimeConfig;
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -19,13 +19,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
19
19
|
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
20
20
|
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
21
21
|
awsCheckVersion(process.version);
|
|
22
|
-
const
|
|
22
|
+
const loaderConfig = { profile: config?.profile, logger: clientSharedValues.logger };
|
|
23
23
|
return {
|
|
24
24
|
...clientSharedValues,
|
|
25
25
|
...config,
|
|
26
26
|
runtime: "node",
|
|
27
27
|
defaultsMode,
|
|
28
|
-
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS,
|
|
28
|
+
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
29
29
|
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
30
30
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
31
31
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
@@ -33,7 +33,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
33
33
|
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
34
34
|
md5: config?.md5 ?? Hash.bind(null, "md5"),
|
|
35
35
|
region: config?.region ??
|
|
36
|
-
loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...
|
|
36
|
+
loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
37
37
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
38
38
|
retryMode: config?.retryMode ??
|
|
39
39
|
loadNodeConfig({
|
|
@@ -42,8 +42,8 @@ export const getRuntimeConfig = (config) => {
|
|
|
42
42
|
}, config),
|
|
43
43
|
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
44
44
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
45
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS,
|
|
46
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS,
|
|
47
|
-
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS,
|
|
45
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
46
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
47
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
48
48
|
};
|
|
49
49
|
};
|
|
@@ -23,7 +23,7 @@ export interface AddPermissionCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
declare const AddPermissionCommand_base: {
|
|
25
25
|
new (input: AddPermissionCommandInput): import("@smithy/smithy-client").CommandImpl<AddPermissionCommandInput, AddPermissionCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: AddPermissionCommandInput): import("@smithy/smithy-client").CommandImpl<AddPermissionCommandInput, AddPermissionCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface CancelMessageMoveTaskCommandOutput extends CancelMessageMoveTas
|
|
|
23
23
|
}
|
|
24
24
|
declare const CancelMessageMoveTaskCommand_base: {
|
|
25
25
|
new (input: CancelMessageMoveTaskCommandInput): import("@smithy/smithy-client").CommandImpl<CancelMessageMoveTaskCommandInput, CancelMessageMoveTaskCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: CancelMessageMoveTaskCommandInput): import("@smithy/smithy-client").CommandImpl<CancelMessageMoveTaskCommandInput, CancelMessageMoveTaskCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface ChangeMessageVisibilityBatchCommandOutput extends ChangeMessage
|
|
|
23
23
|
}
|
|
24
24
|
declare const ChangeMessageVisibilityBatchCommand_base: {
|
|
25
25
|
new (input: ChangeMessageVisibilityBatchCommandInput): import("@smithy/smithy-client").CommandImpl<ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: ChangeMessageVisibilityBatchCommandInput): import("@smithy/smithy-client").CommandImpl<ChangeMessageVisibilityBatchCommandInput, ChangeMessageVisibilityBatchCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface ChangeMessageVisibilityCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
declare const ChangeMessageVisibilityCommand_base: {
|
|
25
25
|
new (input: ChangeMessageVisibilityCommandInput): import("@smithy/smithy-client").CommandImpl<ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: ChangeMessageVisibilityCommandInput): import("@smithy/smithy-client").CommandImpl<ChangeMessageVisibilityCommandInput, ChangeMessageVisibilityCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface CreateQueueCommandOutput extends CreateQueueResult, __MetadataB
|
|
|
23
23
|
}
|
|
24
24
|
declare const CreateQueueCommand_base: {
|
|
25
25
|
new (input: CreateQueueCommandInput): import("@smithy/smithy-client").CommandImpl<CreateQueueCommandInput, CreateQueueCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: CreateQueueCommandInput): import("@smithy/smithy-client").CommandImpl<CreateQueueCommandInput, CreateQueueCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface DeleteMessageBatchCommandOutput extends DeleteMessageBatchResul
|
|
|
23
23
|
}
|
|
24
24
|
declare const DeleteMessageBatchCommand_base: {
|
|
25
25
|
new (input: DeleteMessageBatchCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: DeleteMessageBatchCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMessageBatchCommandInput, DeleteMessageBatchCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface DeleteMessageCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
declare const DeleteMessageCommand_base: {
|
|
25
25
|
new (input: DeleteMessageCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMessageCommandInput, DeleteMessageCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: DeleteMessageCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMessageCommandInput, DeleteMessageCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface DeleteQueueCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
declare const DeleteQueueCommand_base: {
|
|
25
25
|
new (input: DeleteQueueCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteQueueCommandInput, DeleteQueueCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: DeleteQueueCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteQueueCommandInput, DeleteQueueCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface GetQueueAttributesCommandOutput extends GetQueueAttributesResul
|
|
|
23
23
|
}
|
|
24
24
|
declare const GetQueueAttributesCommand_base: {
|
|
25
25
|
new (input: GetQueueAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: GetQueueAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface GetQueueUrlCommandOutput extends GetQueueUrlResult, __MetadataB
|
|
|
23
23
|
}
|
|
24
24
|
declare const GetQueueUrlCommand_base: {
|
|
25
25
|
new (input: GetQueueUrlCommandInput): import("@smithy/smithy-client").CommandImpl<GetQueueUrlCommandInput, GetQueueUrlCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: GetQueueUrlCommandInput): import("@smithy/smithy-client").CommandImpl<GetQueueUrlCommandInput, GetQueueUrlCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface ListDeadLetterSourceQueuesCommandOutput extends ListDeadLetterS
|
|
|
23
23
|
}
|
|
24
24
|
declare const ListDeadLetterSourceQueuesCommand_base: {
|
|
25
25
|
new (input: ListDeadLetterSourceQueuesCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: ListDeadLetterSourceQueuesCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeadLetterSourceQueuesCommandInput, ListDeadLetterSourceQueuesCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface ListMessageMoveTasksCommandOutput extends ListMessageMoveTasksR
|
|
|
23
23
|
}
|
|
24
24
|
declare const ListMessageMoveTasksCommand_base: {
|
|
25
25
|
new (input: ListMessageMoveTasksCommandInput): import("@smithy/smithy-client").CommandImpl<ListMessageMoveTasksCommandInput, ListMessageMoveTasksCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: ListMessageMoveTasksCommandInput): import("@smithy/smithy-client").CommandImpl<ListMessageMoveTasksCommandInput, ListMessageMoveTasksCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface ListQueueTagsCommandOutput extends ListQueueTagsResult, __Metad
|
|
|
23
23
|
}
|
|
24
24
|
declare const ListQueueTagsCommand_base: {
|
|
25
25
|
new (input: ListQueueTagsCommandInput): import("@smithy/smithy-client").CommandImpl<ListQueueTagsCommandInput, ListQueueTagsCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: ListQueueTagsCommandInput): import("@smithy/smithy-client").CommandImpl<ListQueueTagsCommandInput, ListQueueTagsCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface PurgeQueueCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
declare const PurgeQueueCommand_base: {
|
|
25
25
|
new (input: PurgeQueueCommandInput): import("@smithy/smithy-client").CommandImpl<PurgeQueueCommandInput, PurgeQueueCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: PurgeQueueCommandInput): import("@smithy/smithy-client").CommandImpl<PurgeQueueCommandInput, PurgeQueueCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface ReceiveMessageCommandOutput extends ReceiveMessageResult, __Met
|
|
|
23
23
|
}
|
|
24
24
|
declare const ReceiveMessageCommand_base: {
|
|
25
25
|
new (input: ReceiveMessageCommandInput): import("@smithy/smithy-client").CommandImpl<ReceiveMessageCommandInput, ReceiveMessageCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: ReceiveMessageCommandInput): import("@smithy/smithy-client").CommandImpl<ReceiveMessageCommandInput, ReceiveMessageCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
declare const RemovePermissionCommand_base: {
|
|
25
25
|
new (input: RemovePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<RemovePermissionCommandInput, RemovePermissionCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: RemovePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<RemovePermissionCommandInput, RemovePermissionCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, _
|
|
|
23
23
|
}
|
|
24
24
|
declare const SendMessageBatchCommand_base: {
|
|
25
25
|
new (input: SendMessageBatchCommandInput): import("@smithy/smithy-client").CommandImpl<SendMessageBatchCommandInput, SendMessageBatchCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: SendMessageBatchCommandInput): import("@smithy/smithy-client").CommandImpl<SendMessageBatchCommandInput, SendMessageBatchCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface SendMessageCommandOutput extends SendMessageResult, __MetadataB
|
|
|
23
23
|
}
|
|
24
24
|
declare const SendMessageCommand_base: {
|
|
25
25
|
new (input: SendMessageCommandInput): import("@smithy/smithy-client").CommandImpl<SendMessageCommandInput, SendMessageCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: SendMessageCommandInput): import("@smithy/smithy-client").CommandImpl<SendMessageCommandInput, SendMessageCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface SetQueueAttributesCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
declare const SetQueueAttributesCommand_base: {
|
|
25
25
|
new (input: SetQueueAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: SetQueueAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface StartMessageMoveTaskCommandOutput extends StartMessageMoveTaskR
|
|
|
23
23
|
}
|
|
24
24
|
declare const StartMessageMoveTaskCommand_base: {
|
|
25
25
|
new (input: StartMessageMoveTaskCommandInput): import("@smithy/smithy-client").CommandImpl<StartMessageMoveTaskCommandInput, StartMessageMoveTaskCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: StartMessageMoveTaskCommandInput): import("@smithy/smithy-client").CommandImpl<StartMessageMoveTaskCommandInput, StartMessageMoveTaskCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface TagQueueCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
declare const TagQueueCommand_base: {
|
|
25
25
|
new (input: TagQueueCommandInput): import("@smithy/smithy-client").CommandImpl<TagQueueCommandInput, TagQueueCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: TagQueueCommandInput): import("@smithy/smithy-client").CommandImpl<TagQueueCommandInput, TagQueueCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface UntagQueueCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
declare const UntagQueueCommand_base: {
|
|
25
25
|
new (input: UntagQueueCommandInput): import("@smithy/smithy-client").CommandImpl<UntagQueueCommandInput, UntagQueueCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: UntagQueueCommandInput): import("@smithy/smithy-client").CommandImpl<UntagQueueCommandInput, UntagQueueCommandOutput, SQSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -11,9 +11,7 @@ export interface ClientInputEndpointParameters {
|
|
|
11
11
|
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
|
-
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T &
|
|
15
|
-
defaultSigningName: string;
|
|
16
|
-
};
|
|
14
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
|
|
17
15
|
export declare const commonParams: {
|
|
18
16
|
readonly UseFIPS: {
|
|
19
17
|
readonly type: "builtInParams";
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
md5: false | import("@smithy/types").HashConstructor;
|
|
14
14
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -22,31 +22,31 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
22
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
24
|
base64Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
base64Encoder: (_input:
|
|
25
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
26
26
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
27
|
-
utf8Encoder: (input:
|
|
27
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
28
28
|
disableHostPrefix: boolean;
|
|
29
29
|
serviceId: string;
|
|
30
|
-
profile?: string
|
|
30
|
+
profile?: string;
|
|
31
31
|
logger: import("@smithy/types").Logger;
|
|
32
32
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
33
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
34
|
-
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
33
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
36
|
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;
|
|
37
37
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
38
|
-
logger?: import("@smithy/types").Logger
|
|
38
|
+
logger?: import("@smithy/types").Logger;
|
|
39
39
|
}) => import("@smithy/types").EndpointV2;
|
|
40
|
-
tls?: boolean
|
|
41
|
-
serviceConfiguredEndpoint?:
|
|
42
|
-
useQueueUrlAsEndpoint?: boolean
|
|
43
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]
|
|
40
|
+
tls?: boolean;
|
|
41
|
+
serviceConfiguredEndpoint?: never;
|
|
42
|
+
useQueueUrlAsEndpoint?: boolean;
|
|
43
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
44
44
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
45
45
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
46
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider
|
|
47
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme
|
|
48
|
-
signingEscapePath?: boolean
|
|
49
|
-
systemClockOffset?: number
|
|
50
|
-
signingRegion?: string
|
|
51
|
-
signerConstructor?:
|
|
46
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
47
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
48
|
+
signingEscapePath?: boolean;
|
|
49
|
+
systemClockOffset?: number;
|
|
50
|
+
signingRegion?: string;
|
|
51
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
52
52
|
};
|
|
@@ -9,8 +9,8 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
9
9
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
10
10
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
11
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
12
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
13
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
15
15
|
md5: false | __HashConstructor;
|
|
16
16
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -25,29 +25,29 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
25
25
|
cacheMiddleware?: boolean | undefined;
|
|
26
26
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
27
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
|
-
base64Encoder: (_input:
|
|
28
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
29
29
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
utf8Encoder: (input:
|
|
30
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
31
31
|
disableHostPrefix: boolean;
|
|
32
32
|
serviceId: string;
|
|
33
|
-
profile?: string
|
|
33
|
+
profile?: string;
|
|
34
34
|
logger: import("@smithy/types").Logger;
|
|
35
35
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
37
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
37
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
38
38
|
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;
|
|
39
39
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
40
|
-
logger?: import("@smithy/types").Logger
|
|
40
|
+
logger?: import("@smithy/types").Logger;
|
|
41
41
|
}) => import("@smithy/types").EndpointV2;
|
|
42
|
-
tls?: boolean
|
|
43
|
-
serviceConfiguredEndpoint?:
|
|
44
|
-
useQueueUrlAsEndpoint?: boolean
|
|
42
|
+
tls?: boolean;
|
|
43
|
+
serviceConfiguredEndpoint?: never;
|
|
44
|
+
useQueueUrlAsEndpoint?: boolean;
|
|
45
45
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
46
46
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
47
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider
|
|
48
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme
|
|
49
|
-
signingEscapePath?: boolean
|
|
50
|
-
systemClockOffset?: number
|
|
51
|
-
signingRegion?: string
|
|
52
|
-
signerConstructor?:
|
|
47
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
48
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
49
|
+
signingEscapePath?: boolean;
|
|
50
|
+
systemClockOffset?: number;
|
|
51
|
+
signingRegion?: string;
|
|
52
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
53
53
|
};
|
|
@@ -7,21 +7,21 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
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
9
|
apiVersion: string;
|
|
10
|
-
cacheMiddleware?: boolean
|
|
10
|
+
cacheMiddleware?: boolean;
|
|
11
11
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
12
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
13
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
14
14
|
base64Decoder: import("@smithy/types").Decoder;
|
|
15
|
-
base64Encoder: (_input:
|
|
15
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
16
16
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
-
utf8Encoder: (input:
|
|
17
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
18
18
|
disableHostPrefix: boolean;
|
|
19
19
|
serviceId: string;
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
-
profile?: string
|
|
24
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
23
|
+
profile?: string;
|
|
24
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
25
25
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
md5: false | import("@smithy/types").HashConstructor;
|
|
27
27
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
@@ -29,23 +29,23 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
29
29
|
logger: import("@smithy/types").Logger;
|
|
30
30
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
33
|
-
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined
|
|
34
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
32
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
35
35
|
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;
|
|
36
36
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
|
-
logger?: import("@smithy/types").Logger
|
|
37
|
+
logger?: import("@smithy/types").Logger;
|
|
38
38
|
}) => import("@smithy/types").EndpointV2;
|
|
39
|
-
tls?: boolean
|
|
40
|
-
serviceConfiguredEndpoint?:
|
|
41
|
-
useQueueUrlAsEndpoint?: boolean
|
|
42
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]
|
|
39
|
+
tls?: boolean;
|
|
40
|
+
serviceConfiguredEndpoint?: never;
|
|
41
|
+
useQueueUrlAsEndpoint?: boolean;
|
|
42
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
43
43
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
44
44
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
45
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider
|
|
46
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme
|
|
47
|
-
signingEscapePath?: boolean
|
|
48
|
-
systemClockOffset?: number
|
|
49
|
-
signingRegion?: string
|
|
50
|
-
signerConstructor?:
|
|
45
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
46
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
47
|
+
signingEscapePath?: boolean;
|
|
48
|
+
systemClockOffset?: number;
|
|
49
|
+
signingRegion?: string;
|
|
50
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
51
51
|
};
|
|
@@ -5,10 +5,10 @@ import { SQSClientConfig } from "./SQSClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder: (_input:
|
|
8
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
-
logger?: import("@smithy/types").Logger
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
12
12
|
}) => import("@smithy/types").EndpointV2;
|
|
13
13
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder: (input:
|
|
20
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
21
21
|
};
|
|
@@ -21,7 +21,7 @@ declare const AddPermissionCommand_base: {
|
|
|
21
21
|
ServiceOutputTypes
|
|
22
22
|
>;
|
|
23
23
|
new (
|
|
24
|
-
|
|
24
|
+
input: AddPermissionCommandInput
|
|
25
25
|
): import("@smithy/smithy-client").CommandImpl<
|
|
26
26
|
AddPermissionCommandInput,
|
|
27
27
|
AddPermissionCommandOutput,
|
|
@@ -27,7 +27,7 @@ declare const CancelMessageMoveTaskCommand_base: {
|
|
|
27
27
|
ServiceOutputTypes
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
|
-
|
|
30
|
+
input: CancelMessageMoveTaskCommandInput
|
|
31
31
|
): import("@smithy/smithy-client").CommandImpl<
|
|
32
32
|
CancelMessageMoveTaskCommandInput,
|
|
33
33
|
CancelMessageMoveTaskCommandOutput,
|
|
@@ -27,7 +27,7 @@ declare const ChangeMessageVisibilityBatchCommand_base: {
|
|
|
27
27
|
ServiceOutputTypes
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
|
-
|
|
30
|
+
input: ChangeMessageVisibilityBatchCommandInput
|
|
31
31
|
): import("@smithy/smithy-client").CommandImpl<
|
|
32
32
|
ChangeMessageVisibilityBatchCommandInput,
|
|
33
33
|
ChangeMessageVisibilityBatchCommandOutput,
|
|
@@ -23,7 +23,7 @@ declare const ChangeMessageVisibilityCommand_base: {
|
|
|
23
23
|
ServiceOutputTypes
|
|
24
24
|
>;
|
|
25
25
|
new (
|
|
26
|
-
|
|
26
|
+
input: ChangeMessageVisibilityCommandInput
|
|
27
27
|
): import("@smithy/smithy-client").CommandImpl<
|
|
28
28
|
ChangeMessageVisibilityCommandInput,
|
|
29
29
|
ChangeMessageVisibilityCommandOutput,
|
|
@@ -27,7 +27,7 @@ declare const DeleteMessageBatchCommand_base: {
|
|
|
27
27
|
ServiceOutputTypes
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
|
-
|
|
30
|
+
input: DeleteMessageBatchCommandInput
|
|
31
31
|
): import("@smithy/smithy-client").CommandImpl<
|
|
32
32
|
DeleteMessageBatchCommandInput,
|
|
33
33
|
DeleteMessageBatchCommandOutput,
|