@aws-sdk/client-eventbridge 3.645.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.
Files changed (66) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +6 -2
  2. package/dist-cjs/index.js +56 -168
  3. package/dist-es/commands/ActivateEventSourceCommand.js +1 -3
  4. package/dist-es/commands/CancelReplayCommand.js +1 -3
  5. package/dist-es/commands/CreateApiDestinationCommand.js +1 -3
  6. package/dist-es/commands/CreateArchiveCommand.js +1 -3
  7. package/dist-es/commands/CreateConnectionCommand.js +1 -3
  8. package/dist-es/commands/CreateEndpointCommand.js +1 -3
  9. package/dist-es/commands/CreateEventBusCommand.js +1 -3
  10. package/dist-es/commands/CreatePartnerEventSourceCommand.js +1 -3
  11. package/dist-es/commands/DeactivateEventSourceCommand.js +1 -3
  12. package/dist-es/commands/DeauthorizeConnectionCommand.js +1 -3
  13. package/dist-es/commands/DeleteApiDestinationCommand.js +1 -3
  14. package/dist-es/commands/DeleteArchiveCommand.js +1 -3
  15. package/dist-es/commands/DeleteConnectionCommand.js +1 -3
  16. package/dist-es/commands/DeleteEndpointCommand.js +1 -3
  17. package/dist-es/commands/DeleteEventBusCommand.js +1 -3
  18. package/dist-es/commands/DeletePartnerEventSourceCommand.js +1 -3
  19. package/dist-es/commands/DeleteRuleCommand.js +1 -3
  20. package/dist-es/commands/DescribeApiDestinationCommand.js +1 -3
  21. package/dist-es/commands/DescribeArchiveCommand.js +1 -3
  22. package/dist-es/commands/DescribeConnectionCommand.js +1 -3
  23. package/dist-es/commands/DescribeEndpointCommand.js +1 -3
  24. package/dist-es/commands/DescribeEventBusCommand.js +1 -3
  25. package/dist-es/commands/DescribeEventSourceCommand.js +1 -3
  26. package/dist-es/commands/DescribePartnerEventSourceCommand.js +1 -3
  27. package/dist-es/commands/DescribeReplayCommand.js +1 -3
  28. package/dist-es/commands/DescribeRuleCommand.js +1 -3
  29. package/dist-es/commands/DisableRuleCommand.js +1 -3
  30. package/dist-es/commands/EnableRuleCommand.js +1 -3
  31. package/dist-es/commands/ListApiDestinationsCommand.js +1 -3
  32. package/dist-es/commands/ListArchivesCommand.js +1 -3
  33. package/dist-es/commands/ListConnectionsCommand.js +1 -3
  34. package/dist-es/commands/ListEndpointsCommand.js +1 -3
  35. package/dist-es/commands/ListEventBusesCommand.js +1 -3
  36. package/dist-es/commands/ListEventSourcesCommand.js +1 -3
  37. package/dist-es/commands/ListPartnerEventSourceAccountsCommand.js +1 -3
  38. package/dist-es/commands/ListPartnerEventSourcesCommand.js +1 -3
  39. package/dist-es/commands/ListReplaysCommand.js +1 -3
  40. package/dist-es/commands/ListRuleNamesByTargetCommand.js +1 -3
  41. package/dist-es/commands/ListRulesCommand.js +1 -3
  42. package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
  43. package/dist-es/commands/ListTargetsByRuleCommand.js +1 -3
  44. package/dist-es/commands/PutPartnerEventsCommand.js +1 -3
  45. package/dist-es/commands/PutPermissionCommand.js +1 -3
  46. package/dist-es/commands/PutRuleCommand.js +1 -3
  47. package/dist-es/commands/PutTargetsCommand.js +1 -3
  48. package/dist-es/commands/RemovePermissionCommand.js +1 -3
  49. package/dist-es/commands/RemoveTargetsCommand.js +1 -3
  50. package/dist-es/commands/StartReplayCommand.js +1 -3
  51. package/dist-es/commands/TagResourceCommand.js +1 -3
  52. package/dist-es/commands/TestEventPatternCommand.js +1 -3
  53. package/dist-es/commands/UntagResourceCommand.js +1 -3
  54. package/dist-es/commands/UpdateApiDestinationCommand.js +1 -3
  55. package/dist-es/commands/UpdateArchiveCommand.js +1 -3
  56. package/dist-es/commands/UpdateConnectionCommand.js +1 -3
  57. package/dist-es/commands/UpdateEndpointCommand.js +1 -3
  58. package/dist-es/commands/UpdateEventBusCommand.js +1 -3
  59. package/dist-es/endpoint/endpointResolver.js +7 -3
  60. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  61. package/dist-types/runtimeConfig.d.ts +2 -0
  62. package/dist-types/runtimeConfig.native.d.ts +2 -0
  63. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  64. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  65. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  66. package/package.json +37 -37
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
4
4
  const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
5
  const util_endpoints_2 = require("@smithy/util-endpoints");
6
6
  const ruleset_1 = require("./ruleset");
7
+ const cache = new util_endpoints_2.EndpointCache({
8
+ size: 50,
9
+ params: ["Endpoint", "EndpointId", "Region", "UseDualStack", "UseFIPS"],
10
+ });
7
11
  const defaultEndpointResolver = (endpointParams, context = {}) => {
8
- return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
12
+ return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
9
13
  endpointParams: endpointParams,
10
14
  logger: context.logger,
11
- });
15
+ }));
12
16
  };
13
17
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
18
  util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -2391,9 +2391,7 @@ function sharedHeaders(operation) {
2391
2391
  __name(sharedHeaders, "sharedHeaders");
2392
2392
 
2393
2393
  // src/commands/ActivateEventSourceCommand.ts
2394
- var _ActivateEventSourceCommand = class _ActivateEventSourceCommand extends import_smithy_client.Command.classBuilder().ep({
2395
- ...commonParams
2396
- }).m(function(Command, cs, config, o) {
2394
+ var _ActivateEventSourceCommand = class _ActivateEventSourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2397
2395
  return [
2398
2396
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2399
2397
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2407,9 +2405,7 @@ var ActivateEventSourceCommand = _ActivateEventSourceCommand;
2407
2405
 
2408
2406
 
2409
2407
 
2410
- var _CancelReplayCommand = class _CancelReplayCommand extends import_smithy_client.Command.classBuilder().ep({
2411
- ...commonParams
2412
- }).m(function(Command, cs, config, o) {
2408
+ var _CancelReplayCommand = class _CancelReplayCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2413
2409
  return [
2414
2410
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2415
2411
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2423,9 +2419,7 @@ var CancelReplayCommand = _CancelReplayCommand;
2423
2419
 
2424
2420
 
2425
2421
 
2426
- var _CreateApiDestinationCommand = class _CreateApiDestinationCommand extends import_smithy_client.Command.classBuilder().ep({
2427
- ...commonParams
2428
- }).m(function(Command, cs, config, o) {
2422
+ var _CreateApiDestinationCommand = class _CreateApiDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2429
2423
  return [
2430
2424
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2431
2425
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2439,9 +2433,7 @@ var CreateApiDestinationCommand = _CreateApiDestinationCommand;
2439
2433
 
2440
2434
 
2441
2435
 
2442
- var _CreateArchiveCommand = class _CreateArchiveCommand extends import_smithy_client.Command.classBuilder().ep({
2443
- ...commonParams
2444
- }).m(function(Command, cs, config, o) {
2436
+ var _CreateArchiveCommand = class _CreateArchiveCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2445
2437
  return [
2446
2438
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2447
2439
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2455,9 +2447,7 @@ var CreateArchiveCommand = _CreateArchiveCommand;
2455
2447
 
2456
2448
 
2457
2449
 
2458
- var _CreateConnectionCommand = class _CreateConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
2459
- ...commonParams
2460
- }).m(function(Command, cs, config, o) {
2450
+ var _CreateConnectionCommand = class _CreateConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2461
2451
  return [
2462
2452
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2463
2453
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2471,9 +2461,7 @@ var CreateConnectionCommand = _CreateConnectionCommand;
2471
2461
 
2472
2462
 
2473
2463
 
2474
- var _CreateEndpointCommand = class _CreateEndpointCommand extends import_smithy_client.Command.classBuilder().ep({
2475
- ...commonParams
2476
- }).m(function(Command, cs, config, o) {
2464
+ var _CreateEndpointCommand = class _CreateEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2477
2465
  return [
2478
2466
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2479
2467
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2487,9 +2475,7 @@ var CreateEndpointCommand = _CreateEndpointCommand;
2487
2475
 
2488
2476
 
2489
2477
 
2490
- var _CreateEventBusCommand = class _CreateEventBusCommand extends import_smithy_client.Command.classBuilder().ep({
2491
- ...commonParams
2492
- }).m(function(Command, cs, config, o) {
2478
+ var _CreateEventBusCommand = class _CreateEventBusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2493
2479
  return [
2494
2480
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2495
2481
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2503,9 +2489,7 @@ var CreateEventBusCommand = _CreateEventBusCommand;
2503
2489
 
2504
2490
 
2505
2491
 
2506
- var _CreatePartnerEventSourceCommand = class _CreatePartnerEventSourceCommand extends import_smithy_client.Command.classBuilder().ep({
2507
- ...commonParams
2508
- }).m(function(Command, cs, config, o) {
2492
+ var _CreatePartnerEventSourceCommand = class _CreatePartnerEventSourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2509
2493
  return [
2510
2494
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2511
2495
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2519,9 +2503,7 @@ var CreatePartnerEventSourceCommand = _CreatePartnerEventSourceCommand;
2519
2503
 
2520
2504
 
2521
2505
 
2522
- var _DeactivateEventSourceCommand = class _DeactivateEventSourceCommand extends import_smithy_client.Command.classBuilder().ep({
2523
- ...commonParams
2524
- }).m(function(Command, cs, config, o) {
2506
+ var _DeactivateEventSourceCommand = class _DeactivateEventSourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2525
2507
  return [
2526
2508
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2527
2509
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2535,9 +2517,7 @@ var DeactivateEventSourceCommand = _DeactivateEventSourceCommand;
2535
2517
 
2536
2518
 
2537
2519
 
2538
- var _DeauthorizeConnectionCommand = class _DeauthorizeConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
2539
- ...commonParams
2540
- }).m(function(Command, cs, config, o) {
2520
+ var _DeauthorizeConnectionCommand = class _DeauthorizeConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2541
2521
  return [
2542
2522
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2543
2523
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2551,9 +2531,7 @@ var DeauthorizeConnectionCommand = _DeauthorizeConnectionCommand;
2551
2531
 
2552
2532
 
2553
2533
 
2554
- var _DeleteApiDestinationCommand = class _DeleteApiDestinationCommand extends import_smithy_client.Command.classBuilder().ep({
2555
- ...commonParams
2556
- }).m(function(Command, cs, config, o) {
2534
+ var _DeleteApiDestinationCommand = class _DeleteApiDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2557
2535
  return [
2558
2536
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2559
2537
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2567,9 +2545,7 @@ var DeleteApiDestinationCommand = _DeleteApiDestinationCommand;
2567
2545
 
2568
2546
 
2569
2547
 
2570
- var _DeleteArchiveCommand = class _DeleteArchiveCommand extends import_smithy_client.Command.classBuilder().ep({
2571
- ...commonParams
2572
- }).m(function(Command, cs, config, o) {
2548
+ var _DeleteArchiveCommand = class _DeleteArchiveCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2573
2549
  return [
2574
2550
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2575
2551
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2583,9 +2559,7 @@ var DeleteArchiveCommand = _DeleteArchiveCommand;
2583
2559
 
2584
2560
 
2585
2561
 
2586
- var _DeleteConnectionCommand = class _DeleteConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
2587
- ...commonParams
2588
- }).m(function(Command, cs, config, o) {
2562
+ var _DeleteConnectionCommand = class _DeleteConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2589
2563
  return [
2590
2564
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2591
2565
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2599,9 +2573,7 @@ var DeleteConnectionCommand = _DeleteConnectionCommand;
2599
2573
 
2600
2574
 
2601
2575
 
2602
- var _DeleteEndpointCommand = class _DeleteEndpointCommand extends import_smithy_client.Command.classBuilder().ep({
2603
- ...commonParams
2604
- }).m(function(Command, cs, config, o) {
2576
+ var _DeleteEndpointCommand = class _DeleteEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2605
2577
  return [
2606
2578
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2607
2579
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2615,9 +2587,7 @@ var DeleteEndpointCommand = _DeleteEndpointCommand;
2615
2587
 
2616
2588
 
2617
2589
 
2618
- var _DeleteEventBusCommand = class _DeleteEventBusCommand extends import_smithy_client.Command.classBuilder().ep({
2619
- ...commonParams
2620
- }).m(function(Command, cs, config, o) {
2590
+ var _DeleteEventBusCommand = class _DeleteEventBusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2621
2591
  return [
2622
2592
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2623
2593
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2631,9 +2601,7 @@ var DeleteEventBusCommand = _DeleteEventBusCommand;
2631
2601
 
2632
2602
 
2633
2603
 
2634
- var _DeletePartnerEventSourceCommand = class _DeletePartnerEventSourceCommand extends import_smithy_client.Command.classBuilder().ep({
2635
- ...commonParams
2636
- }).m(function(Command, cs, config, o) {
2604
+ var _DeletePartnerEventSourceCommand = class _DeletePartnerEventSourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2637
2605
  return [
2638
2606
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2639
2607
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2647,9 +2615,7 @@ var DeletePartnerEventSourceCommand = _DeletePartnerEventSourceCommand;
2647
2615
 
2648
2616
 
2649
2617
 
2650
- var _DeleteRuleCommand = class _DeleteRuleCommand extends import_smithy_client.Command.classBuilder().ep({
2651
- ...commonParams
2652
- }).m(function(Command, cs, config, o) {
2618
+ var _DeleteRuleCommand = class _DeleteRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2653
2619
  return [
2654
2620
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2655
2621
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2663,9 +2629,7 @@ var DeleteRuleCommand = _DeleteRuleCommand;
2663
2629
 
2664
2630
 
2665
2631
 
2666
- var _DescribeApiDestinationCommand = class _DescribeApiDestinationCommand extends import_smithy_client.Command.classBuilder().ep({
2667
- ...commonParams
2668
- }).m(function(Command, cs, config, o) {
2632
+ var _DescribeApiDestinationCommand = class _DescribeApiDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2669
2633
  return [
2670
2634
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2671
2635
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2679,9 +2643,7 @@ var DescribeApiDestinationCommand = _DescribeApiDestinationCommand;
2679
2643
 
2680
2644
 
2681
2645
 
2682
- var _DescribeArchiveCommand = class _DescribeArchiveCommand extends import_smithy_client.Command.classBuilder().ep({
2683
- ...commonParams
2684
- }).m(function(Command, cs, config, o) {
2646
+ var _DescribeArchiveCommand = class _DescribeArchiveCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2685
2647
  return [
2686
2648
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2687
2649
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2695,9 +2657,7 @@ var DescribeArchiveCommand = _DescribeArchiveCommand;
2695
2657
 
2696
2658
 
2697
2659
 
2698
- var _DescribeConnectionCommand = class _DescribeConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
2699
- ...commonParams
2700
- }).m(function(Command, cs, config, o) {
2660
+ var _DescribeConnectionCommand = class _DescribeConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2701
2661
  return [
2702
2662
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2703
2663
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2711,9 +2671,7 @@ var DescribeConnectionCommand = _DescribeConnectionCommand;
2711
2671
 
2712
2672
 
2713
2673
 
2714
- var _DescribeEndpointCommand = class _DescribeEndpointCommand extends import_smithy_client.Command.classBuilder().ep({
2715
- ...commonParams
2716
- }).m(function(Command, cs, config, o) {
2674
+ var _DescribeEndpointCommand = class _DescribeEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2717
2675
  return [
2718
2676
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2719
2677
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2727,9 +2685,7 @@ var DescribeEndpointCommand = _DescribeEndpointCommand;
2727
2685
 
2728
2686
 
2729
2687
 
2730
- var _DescribeEventBusCommand = class _DescribeEventBusCommand extends import_smithy_client.Command.classBuilder().ep({
2731
- ...commonParams
2732
- }).m(function(Command, cs, config, o) {
2688
+ var _DescribeEventBusCommand = class _DescribeEventBusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2733
2689
  return [
2734
2690
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2735
2691
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2743,9 +2699,7 @@ var DescribeEventBusCommand = _DescribeEventBusCommand;
2743
2699
 
2744
2700
 
2745
2701
 
2746
- var _DescribeEventSourceCommand = class _DescribeEventSourceCommand extends import_smithy_client.Command.classBuilder().ep({
2747
- ...commonParams
2748
- }).m(function(Command, cs, config, o) {
2702
+ var _DescribeEventSourceCommand = class _DescribeEventSourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2749
2703
  return [
2750
2704
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2751
2705
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2759,9 +2713,7 @@ var DescribeEventSourceCommand = _DescribeEventSourceCommand;
2759
2713
 
2760
2714
 
2761
2715
 
2762
- var _DescribePartnerEventSourceCommand = class _DescribePartnerEventSourceCommand extends import_smithy_client.Command.classBuilder().ep({
2763
- ...commonParams
2764
- }).m(function(Command, cs, config, o) {
2716
+ var _DescribePartnerEventSourceCommand = class _DescribePartnerEventSourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2765
2717
  return [
2766
2718
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2767
2719
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2775,9 +2727,7 @@ var DescribePartnerEventSourceCommand = _DescribePartnerEventSourceCommand;
2775
2727
 
2776
2728
 
2777
2729
 
2778
- var _DescribeReplayCommand = class _DescribeReplayCommand extends import_smithy_client.Command.classBuilder().ep({
2779
- ...commonParams
2780
- }).m(function(Command, cs, config, o) {
2730
+ var _DescribeReplayCommand = class _DescribeReplayCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2781
2731
  return [
2782
2732
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2783
2733
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2791,9 +2741,7 @@ var DescribeReplayCommand = _DescribeReplayCommand;
2791
2741
 
2792
2742
 
2793
2743
 
2794
- var _DescribeRuleCommand = class _DescribeRuleCommand extends import_smithy_client.Command.classBuilder().ep({
2795
- ...commonParams
2796
- }).m(function(Command, cs, config, o) {
2744
+ var _DescribeRuleCommand = class _DescribeRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2797
2745
  return [
2798
2746
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2799
2747
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2807,9 +2755,7 @@ var DescribeRuleCommand = _DescribeRuleCommand;
2807
2755
 
2808
2756
 
2809
2757
 
2810
- var _DisableRuleCommand = class _DisableRuleCommand extends import_smithy_client.Command.classBuilder().ep({
2811
- ...commonParams
2812
- }).m(function(Command, cs, config, o) {
2758
+ var _DisableRuleCommand = class _DisableRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2813
2759
  return [
2814
2760
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2815
2761
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2823,9 +2769,7 @@ var DisableRuleCommand = _DisableRuleCommand;
2823
2769
 
2824
2770
 
2825
2771
 
2826
- var _EnableRuleCommand = class _EnableRuleCommand extends import_smithy_client.Command.classBuilder().ep({
2827
- ...commonParams
2828
- }).m(function(Command, cs, config, o) {
2772
+ var _EnableRuleCommand = class _EnableRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2829
2773
  return [
2830
2774
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2831
2775
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2839,9 +2783,7 @@ var EnableRuleCommand = _EnableRuleCommand;
2839
2783
 
2840
2784
 
2841
2785
 
2842
- var _ListApiDestinationsCommand = class _ListApiDestinationsCommand extends import_smithy_client.Command.classBuilder().ep({
2843
- ...commonParams
2844
- }).m(function(Command, cs, config, o) {
2786
+ var _ListApiDestinationsCommand = class _ListApiDestinationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2845
2787
  return [
2846
2788
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2847
2789
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2855,9 +2797,7 @@ var ListApiDestinationsCommand = _ListApiDestinationsCommand;
2855
2797
 
2856
2798
 
2857
2799
 
2858
- var _ListArchivesCommand = class _ListArchivesCommand extends import_smithy_client.Command.classBuilder().ep({
2859
- ...commonParams
2860
- }).m(function(Command, cs, config, o) {
2800
+ var _ListArchivesCommand = class _ListArchivesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2861
2801
  return [
2862
2802
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2863
2803
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2871,9 +2811,7 @@ var ListArchivesCommand = _ListArchivesCommand;
2871
2811
 
2872
2812
 
2873
2813
 
2874
- var _ListConnectionsCommand = class _ListConnectionsCommand extends import_smithy_client.Command.classBuilder().ep({
2875
- ...commonParams
2876
- }).m(function(Command, cs, config, o) {
2814
+ var _ListConnectionsCommand = class _ListConnectionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2877
2815
  return [
2878
2816
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2879
2817
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2887,9 +2825,7 @@ var ListConnectionsCommand = _ListConnectionsCommand;
2887
2825
 
2888
2826
 
2889
2827
 
2890
- var _ListEndpointsCommand = class _ListEndpointsCommand extends import_smithy_client.Command.classBuilder().ep({
2891
- ...commonParams
2892
- }).m(function(Command, cs, config, o) {
2828
+ var _ListEndpointsCommand = class _ListEndpointsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2893
2829
  return [
2894
2830
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2895
2831
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2903,9 +2839,7 @@ var ListEndpointsCommand = _ListEndpointsCommand;
2903
2839
 
2904
2840
 
2905
2841
 
2906
- var _ListEventBusesCommand = class _ListEventBusesCommand extends import_smithy_client.Command.classBuilder().ep({
2907
- ...commonParams
2908
- }).m(function(Command, cs, config, o) {
2842
+ var _ListEventBusesCommand = class _ListEventBusesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2909
2843
  return [
2910
2844
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2911
2845
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2919,9 +2853,7 @@ var ListEventBusesCommand = _ListEventBusesCommand;
2919
2853
 
2920
2854
 
2921
2855
 
2922
- var _ListEventSourcesCommand = class _ListEventSourcesCommand extends import_smithy_client.Command.classBuilder().ep({
2923
- ...commonParams
2924
- }).m(function(Command, cs, config, o) {
2856
+ var _ListEventSourcesCommand = class _ListEventSourcesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2925
2857
  return [
2926
2858
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2927
2859
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2935,9 +2867,7 @@ var ListEventSourcesCommand = _ListEventSourcesCommand;
2935
2867
 
2936
2868
 
2937
2869
 
2938
- var _ListPartnerEventSourceAccountsCommand = class _ListPartnerEventSourceAccountsCommand extends import_smithy_client.Command.classBuilder().ep({
2939
- ...commonParams
2940
- }).m(function(Command, cs, config, o) {
2870
+ var _ListPartnerEventSourceAccountsCommand = class _ListPartnerEventSourceAccountsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2941
2871
  return [
2942
2872
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2943
2873
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2951,9 +2881,7 @@ var ListPartnerEventSourceAccountsCommand = _ListPartnerEventSourceAccountsComma
2951
2881
 
2952
2882
 
2953
2883
 
2954
- var _ListPartnerEventSourcesCommand = class _ListPartnerEventSourcesCommand extends import_smithy_client.Command.classBuilder().ep({
2955
- ...commonParams
2956
- }).m(function(Command, cs, config, o) {
2884
+ var _ListPartnerEventSourcesCommand = class _ListPartnerEventSourcesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2957
2885
  return [
2958
2886
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2959
2887
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2967,9 +2895,7 @@ var ListPartnerEventSourcesCommand = _ListPartnerEventSourcesCommand;
2967
2895
 
2968
2896
 
2969
2897
 
2970
- var _ListReplaysCommand = class _ListReplaysCommand extends import_smithy_client.Command.classBuilder().ep({
2971
- ...commonParams
2972
- }).m(function(Command, cs, config, o) {
2898
+ var _ListReplaysCommand = class _ListReplaysCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2973
2899
  return [
2974
2900
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2975
2901
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2983,9 +2909,7 @@ var ListReplaysCommand = _ListReplaysCommand;
2983
2909
 
2984
2910
 
2985
2911
 
2986
- var _ListRuleNamesByTargetCommand = class _ListRuleNamesByTargetCommand extends import_smithy_client.Command.classBuilder().ep({
2987
- ...commonParams
2988
- }).m(function(Command, cs, config, o) {
2912
+ var _ListRuleNamesByTargetCommand = class _ListRuleNamesByTargetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2989
2913
  return [
2990
2914
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2991
2915
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2999,9 +2923,7 @@ var ListRuleNamesByTargetCommand = _ListRuleNamesByTargetCommand;
2999
2923
 
3000
2924
 
3001
2925
 
3002
- var _ListRulesCommand = class _ListRulesCommand extends import_smithy_client.Command.classBuilder().ep({
3003
- ...commonParams
3004
- }).m(function(Command, cs, config, o) {
2926
+ var _ListRulesCommand = class _ListRulesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3005
2927
  return [
3006
2928
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3007
2929
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3015,9 +2937,7 @@ var ListRulesCommand = _ListRulesCommand;
3015
2937
 
3016
2938
 
3017
2939
 
3018
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
3019
- ...commonParams
3020
- }).m(function(Command, cs, config, o) {
2940
+ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3021
2941
  return [
3022
2942
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3023
2943
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3031,9 +2951,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
3031
2951
 
3032
2952
 
3033
2953
 
3034
- var _ListTargetsByRuleCommand = class _ListTargetsByRuleCommand extends import_smithy_client.Command.classBuilder().ep({
3035
- ...commonParams
3036
- }).m(function(Command, cs, config, o) {
2954
+ var _ListTargetsByRuleCommand = class _ListTargetsByRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3037
2955
  return [
3038
2956
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3039
2957
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3064,9 +2982,7 @@ var PutEventsCommand = _PutEventsCommand;
3064
2982
 
3065
2983
 
3066
2984
 
3067
- var _PutPartnerEventsCommand = class _PutPartnerEventsCommand extends import_smithy_client.Command.classBuilder().ep({
3068
- ...commonParams
3069
- }).m(function(Command, cs, config, o) {
2985
+ var _PutPartnerEventsCommand = class _PutPartnerEventsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3070
2986
  return [
3071
2987
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3072
2988
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3080,9 +2996,7 @@ var PutPartnerEventsCommand = _PutPartnerEventsCommand;
3080
2996
 
3081
2997
 
3082
2998
 
3083
- var _PutPermissionCommand = class _PutPermissionCommand extends import_smithy_client.Command.classBuilder().ep({
3084
- ...commonParams
3085
- }).m(function(Command, cs, config, o) {
2999
+ var _PutPermissionCommand = class _PutPermissionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3086
3000
  return [
3087
3001
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3088
3002
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3096,9 +3010,7 @@ var PutPermissionCommand = _PutPermissionCommand;
3096
3010
 
3097
3011
 
3098
3012
 
3099
- var _PutRuleCommand = class _PutRuleCommand extends import_smithy_client.Command.classBuilder().ep({
3100
- ...commonParams
3101
- }).m(function(Command, cs, config, o) {
3013
+ var _PutRuleCommand = class _PutRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3102
3014
  return [
3103
3015
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3104
3016
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3112,9 +3024,7 @@ var PutRuleCommand = _PutRuleCommand;
3112
3024
 
3113
3025
 
3114
3026
 
3115
- var _PutTargetsCommand = class _PutTargetsCommand extends import_smithy_client.Command.classBuilder().ep({
3116
- ...commonParams
3117
- }).m(function(Command, cs, config, o) {
3027
+ var _PutTargetsCommand = class _PutTargetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3118
3028
  return [
3119
3029
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3120
3030
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3128,9 +3038,7 @@ var PutTargetsCommand = _PutTargetsCommand;
3128
3038
 
3129
3039
 
3130
3040
 
3131
- var _RemovePermissionCommand = class _RemovePermissionCommand extends import_smithy_client.Command.classBuilder().ep({
3132
- ...commonParams
3133
- }).m(function(Command, cs, config, o) {
3041
+ var _RemovePermissionCommand = class _RemovePermissionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3134
3042
  return [
3135
3043
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3136
3044
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3144,9 +3052,7 @@ var RemovePermissionCommand = _RemovePermissionCommand;
3144
3052
 
3145
3053
 
3146
3054
 
3147
- var _RemoveTargetsCommand = class _RemoveTargetsCommand extends import_smithy_client.Command.classBuilder().ep({
3148
- ...commonParams
3149
- }).m(function(Command, cs, config, o) {
3055
+ var _RemoveTargetsCommand = class _RemoveTargetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3150
3056
  return [
3151
3057
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3152
3058
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3160,9 +3066,7 @@ var RemoveTargetsCommand = _RemoveTargetsCommand;
3160
3066
 
3161
3067
 
3162
3068
 
3163
- var _StartReplayCommand = class _StartReplayCommand extends import_smithy_client.Command.classBuilder().ep({
3164
- ...commonParams
3165
- }).m(function(Command, cs, config, o) {
3069
+ var _StartReplayCommand = class _StartReplayCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3166
3070
  return [
3167
3071
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3168
3072
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3176,9 +3080,7 @@ var StartReplayCommand = _StartReplayCommand;
3176
3080
 
3177
3081
 
3178
3082
 
3179
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
3180
- ...commonParams
3181
- }).m(function(Command, cs, config, o) {
3083
+ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3182
3084
  return [
3183
3085
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3184
3086
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3192,9 +3094,7 @@ var TagResourceCommand = _TagResourceCommand;
3192
3094
 
3193
3095
 
3194
3096
 
3195
- var _TestEventPatternCommand = class _TestEventPatternCommand extends import_smithy_client.Command.classBuilder().ep({
3196
- ...commonParams
3197
- }).m(function(Command, cs, config, o) {
3097
+ var _TestEventPatternCommand = class _TestEventPatternCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3198
3098
  return [
3199
3099
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3200
3100
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3208,9 +3108,7 @@ var TestEventPatternCommand = _TestEventPatternCommand;
3208
3108
 
3209
3109
 
3210
3110
 
3211
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
3212
- ...commonParams
3213
- }).m(function(Command, cs, config, o) {
3111
+ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3214
3112
  return [
3215
3113
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3216
3114
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3224,9 +3122,7 @@ var UntagResourceCommand = _UntagResourceCommand;
3224
3122
 
3225
3123
 
3226
3124
 
3227
- var _UpdateApiDestinationCommand = class _UpdateApiDestinationCommand extends import_smithy_client.Command.classBuilder().ep({
3228
- ...commonParams
3229
- }).m(function(Command, cs, config, o) {
3125
+ var _UpdateApiDestinationCommand = class _UpdateApiDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3230
3126
  return [
3231
3127
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3232
3128
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3240,9 +3136,7 @@ var UpdateApiDestinationCommand = _UpdateApiDestinationCommand;
3240
3136
 
3241
3137
 
3242
3138
 
3243
- var _UpdateArchiveCommand = class _UpdateArchiveCommand extends import_smithy_client.Command.classBuilder().ep({
3244
- ...commonParams
3245
- }).m(function(Command, cs, config, o) {
3139
+ var _UpdateArchiveCommand = class _UpdateArchiveCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3246
3140
  return [
3247
3141
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3248
3142
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3256,9 +3150,7 @@ var UpdateArchiveCommand = _UpdateArchiveCommand;
3256
3150
 
3257
3151
 
3258
3152
 
3259
- var _UpdateConnectionCommand = class _UpdateConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
3260
- ...commonParams
3261
- }).m(function(Command, cs, config, o) {
3153
+ var _UpdateConnectionCommand = class _UpdateConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3262
3154
  return [
3263
3155
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3264
3156
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3272,9 +3164,7 @@ var UpdateConnectionCommand = _UpdateConnectionCommand;
3272
3164
 
3273
3165
 
3274
3166
 
3275
- var _UpdateEndpointCommand = class _UpdateEndpointCommand extends import_smithy_client.Command.classBuilder().ep({
3276
- ...commonParams
3277
- }).m(function(Command, cs, config, o) {
3167
+ var _UpdateEndpointCommand = class _UpdateEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3278
3168
  return [
3279
3169
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3280
3170
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3288,9 +3178,7 @@ var UpdateEndpointCommand = _UpdateEndpointCommand;
3288
3178
 
3289
3179
 
3290
3180
 
3291
- var _UpdateEventBusCommand = class _UpdateEventBusCommand extends import_smithy_client.Command.classBuilder().ep({
3292
- ...commonParams
3293
- }).m(function(Command, cs, config, o) {
3181
+ var _UpdateEventBusCommand = class _UpdateEventBusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3294
3182
  return [
3295
3183
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3296
3184
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_ActivateEventSourceCommand, se_ActivateEventSourceCommand } from "..
6
6
  export { $Command };
7
7
  export class ActivateEventSourceCommand 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_CancelReplayCommand, se_CancelReplayCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class CancelReplayCommand 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_CreateApiDestinationCommand, se_CreateApiDestinationCommand } from "
6
6
  export { $Command };
7
7
  export class CreateApiDestinationCommand 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),