@aws-sdk/client-securityhub 3.100.0 → 3.105.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-securityhub
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class SecurityHubClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var SecurityHubClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -309,9 +309,7 @@ export interface AwsApiCallAction {
309
309
  /**
310
310
  * <p>Identifies the resources that were affected by the API call.</p>
311
311
  */
312
- AffectedResources?: {
313
- [key: string]: string;
314
- };
312
+ AffectedResources?: Record<string, string>;
315
313
  /**
316
314
  * <p>An ISO8601-formatted timestamp that indicates when the API call was first
317
315
  * observed.</p>
@@ -692,9 +690,7 @@ export interface AwsApiGatewayCanarySettings {
692
690
  * <p>Each variable is represented as a string-to-string map between the stage variable name
693
691
  * and the variable value.</p>
694
692
  */
695
- StageVariableOverrides?: {
696
- [key: string]: string;
697
- };
693
+ StageVariableOverrides?: Record<string, string>;
698
694
  /**
699
695
  * <p>Indicates whether the canary deployment uses the stage cache.</p>
700
696
  */
@@ -912,9 +908,7 @@ export interface AwsApiGatewayStageDetails {
912
908
  * </li>
913
909
  * </ul>
914
910
  */
915
- Variables?: {
916
- [key: string]: string;
917
- };
911
+ Variables?: Record<string, string>;
918
912
  /**
919
913
  * <p>The version of the API documentation that is associated with the stage.</p>
920
914
  */
@@ -1155,9 +1149,7 @@ export interface AwsApiGatewayV2StageDetails {
1155
1149
  * </li>
1156
1150
  * </ul>
1157
1151
  */
1158
- StageVariables?: {
1159
- [key: string]: string;
1160
- };
1152
+ StageVariables?: Record<string, string>;
1161
1153
  /**
1162
1154
  * <p>Information about settings for logging access for the stage.</p>
1163
1155
  */
@@ -4959,9 +4951,7 @@ export interface AwsEcsTaskDefinitionContainerDefinitionsFirelensConfigurationDe
4959
4951
  * </li>
4960
4952
  * </ul>
4961
4953
  */
4962
- Options?: {
4963
- [key: string]: string;
4964
- };
4954
+ Options?: Record<string, string>;
4965
4955
  /**
4966
4956
  * <p>The log router to use. </p>
4967
4957
  */
@@ -5140,9 +5130,7 @@ export interface AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationDetails
5140
5130
  /**
5141
5131
  * <p>The configuration options to send to the log driver. Requires version 1.19 of the Docker Remote API or greater on your container instance.</p>
5142
5132
  */
5143
- Options?: {
5144
- [key: string]: string;
5145
- };
5133
+ Options?: Record<string, string>;
5146
5134
  /**
5147
5135
  * <p>The secrets to pass to the log configuration.</p>
5148
5136
  */
@@ -5350,9 +5338,7 @@ export interface AwsEcsTaskDefinitionContainerDefinitionsDetails {
5350
5338
  /**
5351
5339
  * <p>A key-value map of labels to add to the container.</p>
5352
5340
  */
5353
- DockerLabels?: {
5354
- [key: string]: string;
5355
- };
5341
+ DockerLabels?: Record<string, string>;
5356
5342
  /**
5357
5343
  * <p>A list of strings to provide custom labels for SELinux and AppArmor multi-level security systems.</p>
5358
5344
  */
@@ -5640,15 +5626,11 @@ export interface AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails {
5640
5626
  /**
5641
5627
  * <p>A map of Docker driver-specific options that are passed through.</p>
5642
5628
  */
5643
- DriverOpts?: {
5644
- [key: string]: string;
5645
- };
5629
+ DriverOpts?: Record<string, string>;
5646
5630
  /**
5647
5631
  * <p>Custom metadata to add to the Docker volume.</p>
5648
5632
  */
5649
- Labels?: {
5650
- [key: string]: string;
5651
- };
5633
+ Labels?: Record<string, string>;
5652
5634
  /**
5653
5635
  * <p>The scope for the Docker volume that determines its lifecycle. Docker volumes that are scoped to a task are provisioned automatically when the task starts and destroyed when the task stops. Docker volumes that are shared persist after the task stops.</p>
5654
5636
  */
@@ -6330,9 +6312,7 @@ export interface AwsElasticsearchDomainDetails {
6330
6312
  /**
6331
6313
  * <p>The key-value pair that exists if the Elasticsearch domain uses VPC endpoints.</p>
6332
6314
  */
6333
- Endpoints?: {
6334
- [key: string]: string;
6335
- };
6315
+ Endpoints?: Record<string, string>;
6336
6316
  /**
6337
6317
  * <p>OpenSearch version.</p>
6338
6318
  */
@@ -7567,9 +7547,7 @@ export interface AwsLambdaFunctionEnvironment {
7567
7547
  /**
7568
7548
  * <p>Environment variable key-value pairs.</p>
7569
7549
  */
7570
- Variables?: {
7571
- [key: string]: string;
7572
- };
7550
+ Variables?: Record<string, string>;
7573
7551
  /**
7574
7552
  * <p>An <code>AwsLambdaFunctionEnvironmentError</code> object.</p>
7575
7553
  */
@@ -8719,9 +8697,7 @@ export interface AwsOpenSearchServiceDomainDetails {
8719
8697
  * <p>The domain endpoints. Used if the OpenSearch domain resides in a VPC.</p>
8720
8698
  * <p>This is a map of key-value pairs. The key is always <code>vpc</code>. The value is the endpoint.</p>
8721
8699
  */
8722
- DomainEndpoints?: {
8723
- [key: string]: string;
8724
- };
8700
+ DomainEndpoints?: Record<string, string>;
8725
8701
  }
8726
8702
  export declare namespace AwsOpenSearchServiceDomainDetails {
8727
8703
  /**
@@ -3769,9 +3769,7 @@ export interface ResourceDetails {
3769
3769
  * </li>
3770
3770
  * </ul>
3771
3771
  */
3772
- Other?: {
3773
- [key: string]: string;
3774
- };
3772
+ Other?: Record<string, string>;
3775
3773
  /**
3776
3774
  * <p>Details about an RDS event notification subscription.</p>
3777
3775
  */
@@ -3880,9 +3878,7 @@ export interface Resource {
3880
3878
  * <p>A list of Amazon Web Services tags associated with a resource at the time the finding was
3881
3879
  * processed.</p>
3882
3880
  */
3883
- Tags?: {
3884
- [key: string]: string;
3885
- };
3881
+ Tags?: Record<string, string>;
3886
3882
  /**
3887
3883
  * <p>Contains information about sensitive data that was detected on the resource.</p>
3888
3884
  */
@@ -4415,16 +4411,12 @@ export interface AwsSecurityFinding {
4415
4411
  * details that aren't part of the defined <code>AwsSecurityFinding</code> format.</p>
4416
4412
  * <p>Can contain up to 50 key-value pairs. For each key-value pair, the key can contain up to 128 characters, and the value can contain up to 2048 characters.</p>
4417
4413
  */
4418
- ProductFields?: {
4419
- [key: string]: string;
4420
- };
4414
+ ProductFields?: Record<string, string>;
4421
4415
  /**
4422
4416
  * <p>A list of name/value string pairs associated with the finding. These are custom,
4423
4417
  * user-defined fields added to a finding. </p>
4424
4418
  */
4425
- UserDefinedFields?: {
4426
- [key: string]: string;
4427
- };
4419
+ UserDefinedFields?: Record<string, string>;
4428
4420
  /**
4429
4421
  * <p>A list of malware related to a finding.</p>
4430
4422
  */
@@ -5361,9 +5353,7 @@ export interface StandardsSubscription {
5361
5353
  /**
5362
5354
  * <p>A key-value pair of input for the standard.</p>
5363
5355
  */
5364
- StandardsInput: {
5365
- [key: string]: string;
5366
- } | undefined;
5356
+ StandardsInput: Record<string, string> | undefined;
5367
5357
  /**
5368
5358
  * <p>The status of the standard subscription.</p>
5369
5359
  * <p>The status values are as follows:</p>
@@ -5426,9 +5416,7 @@ export interface StandardsSubscriptionRequest {
5426
5416
  /**
5427
5417
  * <p>A key-value pair of input for the standard.</p>
5428
5418
  */
5429
- StandardsInput?: {
5430
- [key: string]: string;
5431
- };
5419
+ StandardsInput?: Record<string, string>;
5432
5420
  }
5433
5421
  export declare namespace StandardsSubscriptionRequest {
5434
5422
  /**
@@ -5742,9 +5730,7 @@ export interface BatchUpdateFindingsRequest {
5742
5730
  * <p>A list of name/value string pairs associated with the finding. These are custom,
5743
5731
  * user-defined fields added to a finding.</p>
5744
5732
  */
5745
- UserDefinedFields?: {
5746
- [key: string]: string;
5747
- };
5733
+ UserDefinedFields?: Record<string, string>;
5748
5734
  /**
5749
5735
  * <p>Used to update the workflow status of a finding.</p>
5750
5736
  * <p>The workflow status indicates the progress of the investigation into the finding. </p>
@@ -6688,9 +6674,7 @@ export interface EnableSecurityHubRequest {
6688
6674
  /**
6689
6675
  * <p>The tags to add to the hub resource when you enable Security Hub.</p>
6690
6676
  */
6691
- Tags?: {
6692
- [key: string]: string;
6693
- };
6677
+ Tags?: Record<string, string>;
6694
6678
  /**
6695
6679
  * <p>Whether to enable the security standards that Security Hub has designated as automatically
6696
6680
  * enabled. If you do not provide a value for <code>EnableDefaultStandards</code>, it is set
@@ -7448,9 +7432,7 @@ export interface ListTagsForResourceResponse {
7448
7432
  /**
7449
7433
  * <p>The tags associated with a resource.</p>
7450
7434
  */
7451
- Tags?: {
7452
- [key: string]: string;
7453
- };
7435
+ Tags?: Record<string, string>;
7454
7436
  }
7455
7437
  export declare namespace ListTagsForResourceResponse {
7456
7438
  /**
@@ -7466,9 +7448,7 @@ export interface TagResourceRequest {
7466
7448
  /**
7467
7449
  * <p>The tags to add to the resource. You can add up to 50 tags at a time. The tag keys can be no longer than 128 characters. The tag values can be no longer than 256 characters.</p>
7468
7450
  */
7469
- Tags: {
7470
- [key: string]: string;
7471
- } | undefined;
7451
+ Tags: Record<string, string> | undefined;
7472
7452
  }
7473
7453
  export declare namespace TagResourceRequest {
7474
7454
  /**
@@ -182,9 +182,7 @@ export interface AwsApiCallAction {
182
182
 
183
183
  DomainDetails?: AwsApiCallActionDomainDetails;
184
184
 
185
- AffectedResources?: {
186
- [key: string]: string;
187
- };
185
+ AffectedResources?: Record<string, string>;
188
186
 
189
187
  FirstSeen?: string;
190
188
 
@@ -370,9 +368,7 @@ export interface AwsApiGatewayCanarySettings {
370
368
 
371
369
  DeploymentId?: string;
372
370
 
373
- StageVariableOverrides?: {
374
- [key: string]: string;
375
- };
371
+ StageVariableOverrides?: Record<string, string>;
376
372
 
377
373
  UseStageCache?: boolean;
378
374
  }
@@ -464,9 +460,7 @@ export interface AwsApiGatewayStageDetails {
464
460
 
465
461
  MethodSettings?: AwsApiGatewayMethodSettings[];
466
462
 
467
- Variables?: {
468
- [key: string]: string;
469
- };
463
+ Variables?: Record<string, string>;
470
464
 
471
465
  DocumentationVersion?: string;
472
466
 
@@ -568,9 +562,7 @@ export interface AwsApiGatewayV2StageDetails {
568
562
 
569
563
  StageName?: string;
570
564
 
571
- StageVariables?: {
572
- [key: string]: string;
573
- };
565
+ StageVariables?: Record<string, string>;
574
566
 
575
567
  AccessLogSettings?: AwsApiGatewayAccessLogSettings;
576
568
 
@@ -2424,9 +2416,7 @@ export declare namespace AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetai
2424
2416
 
2425
2417
  export interface AwsEcsTaskDefinitionContainerDefinitionsFirelensConfigurationDetails {
2426
2418
 
2427
- Options?: {
2428
- [key: string]: string;
2429
- };
2419
+ Options?: Record<string, string>;
2430
2420
 
2431
2421
  Type?: string;
2432
2422
  }
@@ -2525,9 +2515,7 @@ export interface AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationDetails
2525
2515
 
2526
2516
  LogDriver?: string;
2527
2517
 
2528
- Options?: {
2529
- [key: string]: string;
2530
- };
2518
+ Options?: Record<string, string>;
2531
2519
 
2532
2520
  SecretOptions?: AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationSecretOptionsDetails[];
2533
2521
  }
@@ -2642,9 +2630,7 @@ export interface AwsEcsTaskDefinitionContainerDefinitionsDetails {
2642
2630
 
2643
2631
  DnsServers?: string[];
2644
2632
 
2645
- DockerLabels?: {
2646
- [key: string]: string;
2647
- };
2633
+ DockerLabels?: Record<string, string>;
2648
2634
 
2649
2635
  DockerSecurityOptions?: string[];
2650
2636
 
@@ -2767,13 +2753,9 @@ export interface AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails {
2767
2753
 
2768
2754
  Driver?: string;
2769
2755
 
2770
- DriverOpts?: {
2771
- [key: string]: string;
2772
- };
2756
+ DriverOpts?: Record<string, string>;
2773
2757
 
2774
- Labels?: {
2775
- [key: string]: string;
2776
- };
2758
+ Labels?: Record<string, string>;
2777
2759
 
2778
2760
  Scope?: string;
2779
2761
  }
@@ -3136,9 +3118,7 @@ export interface AwsElasticsearchDomainDetails {
3136
3118
 
3137
3119
  Endpoint?: string;
3138
3120
 
3139
- Endpoints?: {
3140
- [key: string]: string;
3141
- };
3121
+ Endpoints?: Record<string, string>;
3142
3122
 
3143
3123
  ElasticsearchVersion?: string;
3144
3124
 
@@ -3760,9 +3740,7 @@ export declare namespace AwsLambdaFunctionEnvironmentError {
3760
3740
 
3761
3741
  export interface AwsLambdaFunctionEnvironment {
3762
3742
 
3763
- Variables?: {
3764
- [key: string]: string;
3765
- };
3743
+ Variables?: Record<string, string>;
3766
3744
 
3767
3745
  Error?: AwsLambdaFunctionEnvironmentError;
3768
3746
  }
@@ -4393,9 +4371,7 @@ export interface AwsOpenSearchServiceDomainDetails {
4393
4371
 
4394
4372
  LogPublishingOptions?: AwsOpenSearchServiceDomainLogPublishingOptionsDetails;
4395
4373
 
4396
- DomainEndpoints?: {
4397
- [key: string]: string;
4398
- };
4374
+ DomainEndpoints?: Record<string, string>;
4399
4375
  }
4400
4376
  export declare namespace AwsOpenSearchServiceDomainDetails {
4401
4377
 
@@ -1858,9 +1858,7 @@ export interface ResourceDetails {
1858
1858
 
1859
1859
  Container?: ContainerDetails;
1860
1860
 
1861
- Other?: {
1862
- [key: string]: string;
1863
- };
1861
+ Other?: Record<string, string>;
1864
1862
 
1865
1863
  AwsRdsEventSubscription?: AwsRdsEventSubscriptionDetails;
1866
1864
 
@@ -1916,9 +1914,7 @@ export interface Resource {
1916
1914
 
1917
1915
  ResourceRole?: string;
1918
1916
 
1919
- Tags?: {
1920
- [key: string]: string;
1921
- };
1917
+ Tags?: Record<string, string>;
1922
1918
 
1923
1919
  DataClassification?: DataClassificationDetails;
1924
1920
 
@@ -2128,13 +2124,9 @@ export interface AwsSecurityFinding {
2128
2124
 
2129
2125
  SourceUrl?: string;
2130
2126
 
2131
- ProductFields?: {
2132
- [key: string]: string;
2133
- };
2127
+ ProductFields?: Record<string, string>;
2134
2128
 
2135
- UserDefinedFields?: {
2136
- [key: string]: string;
2137
- };
2129
+ UserDefinedFields?: Record<string, string>;
2138
2130
 
2139
2131
  Malware?: Malware[];
2140
2132
 
@@ -2520,9 +2512,7 @@ export interface StandardsSubscription {
2520
2512
 
2521
2513
  StandardsArn: string | undefined;
2522
2514
 
2523
- StandardsInput: {
2524
- [key: string]: string;
2525
- } | undefined;
2515
+ StandardsInput: Record<string, string> | undefined;
2526
2516
 
2527
2517
  StandardsStatus: StandardsStatus | string | undefined;
2528
2518
 
@@ -2545,9 +2535,7 @@ export interface StandardsSubscriptionRequest {
2545
2535
 
2546
2536
  StandardsArn: string | undefined;
2547
2537
 
2548
- StandardsInput?: {
2549
- [key: string]: string;
2550
- };
2538
+ StandardsInput?: Record<string, string>;
2551
2539
  }
2552
2540
  export declare namespace StandardsSubscriptionRequest {
2553
2541
 
@@ -2651,9 +2639,7 @@ export interface BatchUpdateFindingsRequest {
2651
2639
 
2652
2640
  Types?: string[];
2653
2641
 
2654
- UserDefinedFields?: {
2655
- [key: string]: string;
2656
- };
2642
+ UserDefinedFields?: Record<string, string>;
2657
2643
 
2658
2644
  Workflow?: WorkflowUpdate;
2659
2645
 
@@ -3196,9 +3182,7 @@ export declare namespace EnableOrganizationAdminAccountResponse {
3196
3182
  }
3197
3183
  export interface EnableSecurityHubRequest {
3198
3184
 
3199
- Tags?: {
3200
- [key: string]: string;
3201
- };
3185
+ Tags?: Record<string, string>;
3202
3186
 
3203
3187
  EnableDefaultStandards?: boolean;
3204
3188
  }
@@ -3605,9 +3589,7 @@ export declare namespace ListTagsForResourceRequest {
3605
3589
  }
3606
3590
  export interface ListTagsForResourceResponse {
3607
3591
 
3608
- Tags?: {
3609
- [key: string]: string;
3610
- };
3592
+ Tags?: Record<string, string>;
3611
3593
  }
3612
3594
  export declare namespace ListTagsForResourceResponse {
3613
3595
 
@@ -3617,9 +3599,7 @@ export interface TagResourceRequest {
3617
3599
 
3618
3600
  ResourceArn: string | undefined;
3619
3601
 
3620
- Tags: {
3621
- [key: string]: string;
3622
- } | undefined;
3602
+ Tags: Record<string, string> | undefined;
3623
3603
  }
3624
3604
  export declare namespace TagResourceRequest {
3625
3605
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-securityhub",
3
3
  "description": "AWS SDK for JavaScript Securityhub Client for Node.js, Browser and React Native",
4
- "version": "3.100.0",
4
+ "version": "3.105.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",
@@ -18,15 +18,16 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.100.0",
21
+ "@aws-sdk/client-sts": "3.105.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.100.0",
23
+ "@aws-sdk/credential-provider-node": "3.105.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
27
27
  "@aws-sdk/middleware-content-length": "3.78.0",
28
28
  "@aws-sdk/middleware-host-header": "3.78.0",
29
29
  "@aws-sdk/middleware-logger": "3.78.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.105.0",
30
31
  "@aws-sdk/middleware-retry": "3.80.0",
31
32
  "@aws-sdk/middleware-serde": "3.78.0",
32
33
  "@aws-sdk/middleware-signing": "3.78.0",