@aws-sdk/client-sqs 3.485.0 → 3.490.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.
@@ -17,14 +17,6 @@ const EndpointParameters_1 = require("./endpoint/EndpointParameters");
17
17
  const runtimeConfig_1 = require("./runtimeConfig");
18
18
  const runtimeExtensions_1 = require("./runtimeExtensions");
19
19
  class SQSClient extends smithy_client_1.Client {
20
- getDefaultHttpAuthSchemeParametersProvider() {
21
- return httpAuthSchemeProvider_1.defaultSQSHttpAuthSchemeParametersProvider;
22
- }
23
- getIdentityProviderConfigProvider() {
24
- return async (config) => new core_1.DefaultIdentityProviderConfig({
25
- "aws.auth#sigv4": config.credentials,
26
- });
27
- }
28
20
  constructor(...[configuration]) {
29
21
  const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
30
22
  const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
@@ -52,5 +44,13 @@ class SQSClient extends smithy_client_1.Client {
52
44
  destroy() {
53
45
  super.destroy();
54
46
  }
47
+ getDefaultHttpAuthSchemeParametersProvider() {
48
+ return httpAuthSchemeProvider_1.defaultSQSHttpAuthSchemeParametersProvider;
49
+ }
50
+ getIdentityProviderConfigProvider() {
51
+ return async (config) => new core_1.DefaultIdentityProviderConfig({
52
+ "aws.auth#sigv4": config.credentials,
53
+ });
54
+ }
55
55
  }
56
56
  exports.SQSClient = SQSClient;
@@ -39,7 +39,7 @@ const defaultSQSHttpAuthSchemeProvider = (authParameters) => {
39
39
  };
40
40
  exports.defaultSQSHttpAuthSchemeProvider = defaultSQSHttpAuthSchemeProvider;
41
41
  const resolveHttpAuthSchemeConfig = (config) => {
42
- const config_0 = (0, core_1.resolveAWSSDKSigV4Config)(config);
42
+ const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
43
43
  return {
44
44
  ...config_0,
45
45
  };
@@ -21,7 +21,7 @@ const getRuntimeConfig = (config) => {
21
21
  {
22
22
  schemeId: "aws.auth#sigv4",
23
23
  identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
24
- signer: new core_1.AWSSDKSigV4Signer(),
24
+ signer: new core_1.AwsSdkSigV4Signer(),
25
25
  },
26
26
  ],
27
27
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
@@ -14,14 +14,6 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
14
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
15
15
  export { __Client };
16
16
  export class SQSClient extends __Client {
17
- getDefaultHttpAuthSchemeParametersProvider() {
18
- return defaultSQSHttpAuthSchemeParametersProvider;
19
- }
20
- getIdentityProviderConfigProvider() {
21
- return async (config) => new DefaultIdentityProviderConfig({
22
- "aws.auth#sigv4": config.credentials,
23
- });
24
- }
25
17
  constructor(...[configuration]) {
26
18
  const _config_0 = __getRuntimeConfig(configuration || {});
27
19
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -49,4 +41,12 @@ export class SQSClient extends __Client {
49
41
  destroy() {
50
42
  super.destroy();
51
43
  }
44
+ getDefaultHttpAuthSchemeParametersProvider() {
45
+ return defaultSQSHttpAuthSchemeParametersProvider;
46
+ }
47
+ getIdentityProviderConfigProvider() {
48
+ return async (config) => new DefaultIdentityProviderConfig({
49
+ "aws.auth#sigv4": config.credentials,
50
+ });
51
+ }
52
52
  }
@@ -1,4 +1,4 @@
1
- import { resolveAWSSDKSigV4Config, } from "@aws-sdk/core";
1
+ import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
2
2
  import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
3
3
  export const defaultSQSHttpAuthSchemeParametersProvider = async (config, context, input) => {
4
4
  return {
@@ -34,7 +34,7 @@ export const defaultSQSHttpAuthSchemeProvider = (authParameters) => {
34
34
  return options;
35
35
  };
36
36
  export const resolveHttpAuthSchemeConfig = (config) => {
37
- const config_0 = resolveAWSSDKSigV4Config(config);
37
+ const config_0 = resolveAwsSdkSigV4Config(config);
38
38
  return {
39
39
  ...config_0,
40
40
  };
@@ -1,4 +1,4 @@
1
- import { AWSSDKSigV4Signer } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4Signer } from "@aws-sdk/core";
2
2
  import { NoOpLogger } from "@smithy/smithy-client";
3
3
  import { parseUrl } from "@smithy/url-parser";
4
4
  import { fromBase64, toBase64 } from "@smithy/util-base64";
@@ -18,7 +18,7 @@ export const getRuntimeConfig = (config) => {
18
18
  {
19
19
  schemeId: "aws.auth#sigv4",
20
20
  identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
21
- signer: new AWSSDKSigV4Signer(),
21
+ signer: new AwsSdkSigV4Signer(),
22
22
  },
23
23
  ],
24
24
  logger: config?.logger ?? new NoOpLogger(),
@@ -260,8 +260,6 @@ export declare class SQSClient extends __Client<__HttpHandlerOptions, ServiceInp
260
260
  * The resolved configuration of SQSClient class. This is resolved and normalized from the {@link SQSClientConfig | constructor configuration interface}.
261
261
  */
262
262
  readonly config: SQSClientResolvedConfig;
263
- private getDefaultHttpAuthSchemeParametersProvider;
264
- private getIdentityProviderConfigProvider;
265
263
  constructor(...[configuration]: __CheckOptionalClientConfig<SQSClientConfig>);
266
264
  /**
267
265
  * Destroy underlying resources, like sockets. It's usually not necessary to do this.
@@ -269,4 +267,6 @@ export declare class SQSClient extends __Client<__HttpHandlerOptions, ServiceInp
269
267
  * Otherwise, sockets might stay open for quite a long time before the server terminates them.
270
268
  */
271
269
  destroy(): void;
270
+ private getDefaultHttpAuthSchemeParametersProvider;
271
+ private getIdentityProviderConfigProvider;
272
272
  }
@@ -1,4 +1,4 @@
1
- import { AWSSDKSigV4AuthInputConfig, AWSSDKSigV4AuthResolvedConfig, AWSSDKSigV4PreviouslyResolved } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
2
2
  import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider } from "@smithy/types";
3
3
  import { SQSClientResolvedConfig } from "../SQSClient";
4
4
  /**
@@ -28,7 +28,7 @@ export declare const defaultSQSHttpAuthSchemeProvider: SQSHttpAuthSchemeProvider
28
28
  /**
29
29
  * @internal
30
30
  */
31
- export interface HttpAuthSchemeInputConfig extends AWSSDKSigV4AuthInputConfig {
31
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
32
32
  /**
33
33
  * experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
34
34
  * @internal
@@ -43,7 +43,7 @@ export interface HttpAuthSchemeInputConfig extends AWSSDKSigV4AuthInputConfig {
43
43
  /**
44
44
  * @internal
45
45
  */
46
- export interface HttpAuthSchemeResolvedConfig extends AWSSDKSigV4AuthResolvedConfig {
46
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
47
47
  /**
48
48
  * experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
49
49
  * @internal
@@ -58,4 +58,4 @@ export interface HttpAuthSchemeResolvedConfig extends AWSSDKSigV4AuthResolvedCon
58
58
  /**
59
59
  * @internal
60
60
  */
61
- export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AWSSDKSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
61
+ export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
@@ -249,8 +249,8 @@ export declare class SQSClient extends __Client<
249
249
  SQSClientResolvedConfig
250
250
  > {
251
251
  readonly config: SQSClientResolvedConfig;
252
- private getDefaultHttpAuthSchemeParametersProvider;
253
- private getIdentityProviderConfigProvider;
254
252
  constructor(...[configuration]: __CheckOptionalClientConfig<SQSClientConfig>);
255
253
  destroy(): void;
254
+ private getDefaultHttpAuthSchemeParametersProvider;
255
+ private getIdentityProviderConfigProvider;
256
256
  }
@@ -1,7 +1,7 @@
1
1
  import {
2
- AWSSDKSigV4AuthInputConfig,
3
- AWSSDKSigV4AuthResolvedConfig,
4
- AWSSDKSigV4PreviouslyResolved,
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
5
  } from "@aws-sdk/core";
6
6
  import {
7
7
  HandlerExecutionContext,
@@ -29,15 +29,15 @@ export declare const defaultSQSHttpAuthSchemeParametersProvider: (
29
29
  export interface SQSHttpAuthSchemeProvider
30
30
  extends HttpAuthSchemeProvider<SQSHttpAuthSchemeParameters> {}
31
31
  export declare const defaultSQSHttpAuthSchemeProvider: SQSHttpAuthSchemeProvider;
32
- export interface HttpAuthSchemeInputConfig extends AWSSDKSigV4AuthInputConfig {
32
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
33
33
  httpAuthSchemes?: HttpAuthScheme[];
34
34
  httpAuthSchemeProvider?: SQSHttpAuthSchemeProvider;
35
35
  }
36
36
  export interface HttpAuthSchemeResolvedConfig
37
- extends AWSSDKSigV4AuthResolvedConfig {
37
+ extends AwsSdkSigV4AuthResolvedConfig {
38
38
  readonly httpAuthSchemes: HttpAuthScheme[];
39
39
  readonly httpAuthSchemeProvider: SQSHttpAuthSchemeProvider;
40
40
  }
41
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
42
- config: T & HttpAuthSchemeInputConfig & AWSSDKSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
43
43
  ) => T & HttpAuthSchemeResolvedConfig;
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.485.0",
4
+ "version": "3.490.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",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.485.0",
24
- "@aws-sdk/core": "3.485.0",
25
- "@aws-sdk/credential-provider-node": "3.485.0",
26
- "@aws-sdk/middleware-host-header": "3.485.0",
27
- "@aws-sdk/middleware-logger": "3.485.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.485.0",
29
- "@aws-sdk/middleware-sdk-sqs": "3.485.0",
30
- "@aws-sdk/middleware-user-agent": "3.485.0",
31
- "@aws-sdk/region-config-resolver": "3.485.0",
32
- "@aws-sdk/types": "3.485.0",
33
- "@aws-sdk/util-endpoints": "3.485.0",
34
- "@aws-sdk/util-user-agent-browser": "3.485.0",
35
- "@aws-sdk/util-user-agent-node": "3.485.0",
23
+ "@aws-sdk/client-sts": "3.490.0",
24
+ "@aws-sdk/core": "3.490.0",
25
+ "@aws-sdk/credential-provider-node": "3.490.0",
26
+ "@aws-sdk/middleware-host-header": "3.489.0",
27
+ "@aws-sdk/middleware-logger": "3.489.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.489.0",
29
+ "@aws-sdk/middleware-sdk-sqs": "3.489.0",
30
+ "@aws-sdk/middleware-user-agent": "3.489.0",
31
+ "@aws-sdk/region-config-resolver": "3.489.0",
32
+ "@aws-sdk/types": "3.489.0",
33
+ "@aws-sdk/util-endpoints": "3.489.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.489.0",
35
+ "@aws-sdk/util-user-agent-node": "3.489.0",
36
36
  "@smithy/config-resolver": "^2.0.23",
37
37
  "@smithy/core": "^1.2.2",
38
38
  "@smithy/fetch-http-handler": "^2.3.2",