@aws-sdk/client-sqs 3.504.0 → 3.507.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.
@@ -1,6 +1,7 @@
1
1
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
2
2
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
3
3
  import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
4
+ import { getQueueUrlPlugin, resolveQueueUrlConfig, } from "@aws-sdk/middleware-sdk-sqs";
4
5
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
5
6
  import { resolveRegionConfig } from "@smithy/config-resolver";
6
7
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
@@ -21,16 +22,18 @@ export class SQSClient extends __Client {
21
22
  const _config_3 = resolveEndpointConfig(_config_2);
22
23
  const _config_4 = resolveRetryConfig(_config_3);
23
24
  const _config_5 = resolveHostHeaderConfig(_config_4);
24
- const _config_6 = resolveUserAgentConfig(_config_5);
25
- const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
26
- const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
27
- super(_config_8);
28
- this.config = _config_8;
25
+ const _config_6 = resolveQueueUrlConfig(_config_5);
26
+ const _config_7 = resolveUserAgentConfig(_config_6);
27
+ const _config_8 = resolveHttpAuthSchemeConfig(_config_7);
28
+ const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
29
+ super(_config_9);
30
+ this.config = _config_9;
29
31
  this.middlewareStack.use(getRetryPlugin(this.config));
30
32
  this.middlewareStack.use(getContentLengthPlugin(this.config));
31
33
  this.middlewareStack.use(getHostHeaderPlugin(this.config));
32
34
  this.middlewareStack.use(getLoggerPlugin(this.config));
33
35
  this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
36
+ this.middlewareStack.use(getQueueUrlPlugin(this.config));
34
37
  this.middlewareStack.use(getUserAgentPlugin(this.config));
35
38
  this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
36
39
  httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),