@aws-sdk/client-dynamodb-streams 3.649.0 → 3.650.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/index.js CHANGED
@@ -661,9 +661,7 @@ function sharedHeaders(operation) {
661
661
  __name(sharedHeaders, "sharedHeaders");
662
662
 
663
663
  // src/commands/DescribeStreamCommand.ts
664
- var _DescribeStreamCommand = class _DescribeStreamCommand extends import_smithy_client.Command.classBuilder().ep({
665
- ...commonParams
666
- }).m(function(Command, cs, config, o) {
664
+ var _DescribeStreamCommand = class _DescribeStreamCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
667
665
  return [
668
666
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
669
667
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -677,9 +675,7 @@ var DescribeStreamCommand = _DescribeStreamCommand;
677
675
 
678
676
 
679
677
 
680
- var _GetRecordsCommand = class _GetRecordsCommand extends import_smithy_client.Command.classBuilder().ep({
681
- ...commonParams
682
- }).m(function(Command, cs, config, o) {
678
+ var _GetRecordsCommand = class _GetRecordsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
683
679
  return [
684
680
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
685
681
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -693,9 +689,7 @@ var GetRecordsCommand = _GetRecordsCommand;
693
689
 
694
690
 
695
691
 
696
- var _GetShardIteratorCommand = class _GetShardIteratorCommand extends import_smithy_client.Command.classBuilder().ep({
697
- ...commonParams
698
- }).m(function(Command, cs, config, o) {
692
+ var _GetShardIteratorCommand = class _GetShardIteratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
699
693
  return [
700
694
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
701
695
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -709,9 +703,7 @@ var GetShardIteratorCommand = _GetShardIteratorCommand;
709
703
 
710
704
 
711
705
 
712
- var _ListStreamsCommand = class _ListStreamsCommand extends import_smithy_client.Command.classBuilder().ep({
713
- ...commonParams
714
- }).m(function(Command, cs, config, o) {
706
+ var _ListStreamsCommand = class _ListStreamsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
715
707
  return [
716
708
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
717
709
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_DescribeStreamCommand, se_DescribeStreamCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class DescribeStreamCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_GetRecordsCommand, se_GetRecordsCommand } from "../protocols/Aws_jso
6
6
  export { $Command };
7
7
  export class GetRecordsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_GetShardIteratorCommand, se_GetShardIteratorCommand } from "../proto
6
6
  export { $Command };
7
7
  export class GetShardIteratorCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListStreamsCommand, se_ListStreamsCommand } from "../protocols/Aws_j
6
6
  export { $Command };
7
7
  export class ListStreamsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -1,10 +1,14 @@
1
1
  import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
- import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
+ import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
3
3
  import { ruleSet } from "./ruleset";
4
+ const cache = new EndpointCache({
5
+ size: 50,
6
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
7
+ });
4
8
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
5
- return resolveEndpoint(ruleSet, {
9
+ return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
6
10
  endpointParams: endpointParams,
7
11
  logger: context.logger,
8
- });
12
+ }));
9
13
  };
10
14
  customEndpointFunctions.aws = awsEndpointFunctions;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-dynamodb-streams",
3
3
  "description": "AWS SDK for JavaScript Dynamodb Streams Client for Node.js, Browser and React Native",
4
- "version": "3.649.0",
4
+ "version": "3.650.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-dynamodb-streams",
@@ -20,10 +20,10 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.649.0",
24
- "@aws-sdk/client-sts": "3.649.0",
23
+ "@aws-sdk/client-sso-oidc": "3.650.0",
24
+ "@aws-sdk/client-sts": "3.650.0",
25
25
  "@aws-sdk/core": "3.649.0",
26
- "@aws-sdk/credential-provider-node": "3.649.0",
26
+ "@aws-sdk/credential-provider-node": "3.650.0",
27
27
  "@aws-sdk/middleware-host-header": "3.649.0",
28
28
  "@aws-sdk/middleware-logger": "3.649.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.649.0",
@@ -1,11 +0,0 @@
1
- // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
- // It should be published with your NPM package. It should not be tracked by Git.
3
- {
4
- "tsdocVersion": "0.12",
5
- "toolPackages": [
6
- {
7
- "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.34.4"
9
- }
10
- ]
11
- }