@aws-sdk/client-inspector2 3.425.0 → 3.428.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/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  AWS SDK for JavaScript Inspector2 Client for Node.js, Browser and React Native.
8
8
 
9
9
  <p>Amazon Inspector is a vulnerability discovery service that automates continuous scanning for
10
- security vulnerabilities within your Amazon EC2 and Amazon ECR environments.</p>
10
+ security vulnerabilities within your Amazon EC2, Amazon ECR, and Amazon Web Services Lambda environments.</p>
11
11
 
12
12
  ## Installing
13
13
 
@@ -361,6 +361,7 @@ exports.CoverageResourceType = {
361
361
  };
362
362
  exports.Ec2Platform = {
363
363
  LINUX: "LINUX",
364
+ MACOS: "MACOS",
364
365
  UNKNOWN: "UNKNOWN",
365
366
  WINDOWS: "WINDOWS",
366
367
  };
@@ -350,6 +350,7 @@ export const CoverageResourceType = {
350
350
  };
351
351
  export const Ec2Platform = {
352
352
  LINUX: "LINUX",
353
+ MACOS: "MACOS",
353
354
  UNKNOWN: "UNKNOWN",
354
355
  WINDOWS: "WINDOWS",
355
356
  };
@@ -327,7 +327,7 @@ export interface Inspector2 {
327
327
  /**
328
328
  * @public
329
329
  * <p>Amazon Inspector is a vulnerability discovery service that automates continuous scanning for
330
- * security vulnerabilities within your Amazon EC2 and Amazon ECR environments.</p>
330
+ * security vulnerabilities within your Amazon EC2, Amazon ECR, and Amazon Web Services Lambda environments.</p>
331
331
  */
332
332
  export declare class Inspector2 extends Inspector2Client implements Inspector2 {
333
333
  }
@@ -199,7 +199,7 @@ export interface Inspector2ClientResolvedConfig extends Inspector2ClientResolved
199
199
  /**
200
200
  * @public
201
201
  * <p>Amazon Inspector is a vulnerability discovery service that automates continuous scanning for
202
- * security vulnerabilities within your Amazon EC2 and Amazon ECR environments.</p>
202
+ * security vulnerabilities within your Amazon EC2, Amazon ECR, and Amazon Web Services Lambda environments.</p>
203
203
  */
204
204
  export declare class Inspector2Client extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, Inspector2ClientResolvedConfig> {
205
205
  /**
@@ -23,7 +23,7 @@ export interface CreateFilterCommandOutput extends CreateFilterResponse, __Metad
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>Creates a filter resource using specified filter criteria.</p>
26
+ * <p>Creates a filter resource using specified filter criteria. When the filter action is set to <code>SUPPRESS</code> this action creates a suppression rule.</p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * <p>Amazon Inspector is a vulnerability discovery service that automates continuous scanning for
3
- * security vulnerabilities within your Amazon EC2 and Amazon ECR environments.</p>
3
+ * security vulnerabilities within your Amazon EC2, Amazon ECR, and Amazon Web Services Lambda environments.</p>
4
4
  *
5
5
  * @packageDocumentation
6
6
  */
@@ -2881,7 +2881,7 @@ export interface CoverageMapFilter {
2881
2881
  export interface CoverageFilterCriteria {
2882
2882
  /**
2883
2883
  * @public
2884
- * <p>The scan status code to filter on.</p>
2884
+ * <p>The scan status code to filter on. Valid values are: <code>ValidationException</code>, <code>InternalServerException</code>, <code>ResourceNotFoundException</code>, <code>BadRequestException</code>, and <code>ThrottlingException</code>.</p>
2885
2885
  */
2886
2886
  scanStatusCode?: CoverageStringFilter[];
2887
2887
  /**
@@ -2965,6 +2965,7 @@ export type CoverageResourceType = (typeof CoverageResourceType)[keyof typeof Co
2965
2965
  */
2966
2966
  export declare const Ec2Platform: {
2967
2967
  readonly LINUX: "LINUX";
2968
+ readonly MACOS: "MACOS";
2968
2969
  readonly UNKNOWN: "UNKNOWN";
2969
2970
  readonly WINDOWS: "WINDOWS";
2970
2971
  };
@@ -3143,7 +3144,56 @@ export interface ScanStatus {
3143
3144
  statusCode: ScanStatusCode | string | undefined;
3144
3145
  /**
3145
3146
  * @public
3146
- * <p>The reason for the scan.</p>
3147
+ * <p>The scan status. Possible return values and descriptions are: </p>
3148
+ * <p>
3149
+ * <code>PENDING_INITIAL_SCAN</code> - This resource has been identified for scanning, results will be available soon.</p>
3150
+ * <p>
3151
+ * <code>ACCESS_DENIED</code> - Resource access policy restricting Amazon Inspector access. Please update the IAM policy.</p>
3152
+ * <p>
3153
+ * <code>INTERNAL_ERROR</code> - Amazon Inspector has encountered an internal error for this resource. Amazon Inspector service will automatically resolve the issue and resume the scanning. No action required from the user.</p>
3154
+ * <p>
3155
+ * <code>UNMANAGED_EC2_INSTANCE</code> - The EC2 instance is not managed by SSM, please use the following SSM automation to remediate the issue: <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-awssupport-troubleshoot-managed-instance.html">https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-awssupport-troubleshoot-managed-instance.html</a>. Once the instance becomes managed by SSM, Inspector will automatically begin scanning this instance. </p>
3156
+ * <p>
3157
+ * <code>UNSUPPORTED_OS</code> - Amazon Inspector does not support this OS, architecture, or image manifest type at this time. To see a complete list of supported operating systems see: <a href=" https://docs.aws.amazon.com/inspector/latest/user/supported.html">https://docs.aws.amazon.com/inspector/latest/user/supported.html</a>.</p>
3158
+ * <p>
3159
+ * <code>SCAN_ELIGIBILITY_EXPIRED</code> - The configured scan duration has lapsed for this image.</p>
3160
+ * <p>
3161
+ * <code>RESOURCE_TERMINATED</code> - This resource has been terminated. The findings and coverage associated with this resource are in the process of being cleaned up.</p>
3162
+ * <p>
3163
+ * <code>SUCCESSFUL</code> - The scan was successful.</p>
3164
+ * <p>
3165
+ * <code>NO_RESOURCES_FOUND</code> - Reserved for future use.</p>
3166
+ * <p>
3167
+ * <code>IMAGE_SIZE_EXCEEDED</code> - Reserved for future use.</p>
3168
+ * <p>
3169
+ * <code>SCAN_FREQUENCY_MANUAL</code> - This image will not be covered by Amazon Inspector due to the repository scan frequency configuration.</p>
3170
+ * <p>
3171
+ * <code>SCAN_FREQUENCY_SCAN_ON_PUSH </code>- This image will be scanned one time and will not new findings because of the scan frequency configuration.</p>
3172
+ * <p>
3173
+ * <code>EC2_INSTANCE_STOPPED</code> - This EC2 instance is in a stopped state, therefore, Amazon Inspector will pause scanning. The existing findings will continue to exist until the instance is terminated. Once the instance is re-started, Inspector will automatically start scanning the instance again. Please note that you will not be charged for this instance while it’s in a stopped state.</p>
3174
+ * <p>
3175
+ * <code>PENDING_DISABLE</code> - This resource is pending cleanup during disablement. The customer will not be billed while a resource is in the pending disable status.</p>
3176
+ * <p>
3177
+ * <code>NO INVENTORY</code> - Amazon Inspector couldn’t find software application inventory to scan for vulnerabilities. This might be caused due to required Amazon Inspector associations being deleted or failing to run on your resource. Please verify the status of <code>InspectorInventoryCollection-do-not-delete</code> association in the SSM console for the resource. Additionally, you can verify the instance’s inventory in the SSM Fleet Manager console.</p>
3178
+ * <p>
3179
+ * <code>STALE_INVENTORY</code> - Amazon Inspector wasn’t able to collect an updated software application inventory in the last 7 days. Please confirm the required Amazon Inspector associations still exist and you can still see an updated inventory in the SSM console.</p>
3180
+ * <p>
3181
+ * <code>EXCLUDED_BY_TAG</code> - This resource was not scanned because it has been excluded by a tag.</p>
3182
+ * <p>
3183
+ * <code>UNSUPPORTED_RUNTIME</code> - The function was not scanned because it has an unsupported runtime. To see a complete list of supported runtimes see: <a href=" https://docs.aws.amazon.com/inspector/latest/user/supported.html">https://docs.aws.amazon.com/inspector/latest/user/supported.html</a>.</p>
3184
+ * <p>
3185
+ * <code>UNSUPPORTED_MEDIA_TYPE </code>- The ECR image has an unsupported media type.</p>
3186
+ * <p>
3187
+ * <code>UNSUPPORTED_CONFIG_FILE</code> - Reserved for future use.</p>
3188
+ * <p>
3189
+ * <code>DEEP_INSPECTION_PACKAGE_COLLECTION_LIMIT_EXCEEDED</code> - The instance has exceeded the 5000 package limit for Amazon Inspector Deep inspection. To resume Deep inspection for this instance you can try to adjust the custom paths associated with the account.</p>
3190
+ * <p>
3191
+ * <code>DEEP_INSPECTION_DAILY_SSM_INVENTORY_LIMIT_EXCEEDED</code> - The SSM agent couldn't send inventory to Amazon Inspector because the SSM quota for Inventory data collected per instance per day has already been reached for this instance.</p>
3192
+ * <p>
3193
+ * <code>DEEP_INSPECTION_COLLECTION_TIME_LIMIT_EXCEEDED</code> - Amazon Inspector failed to extract the package inventory because the package collection time exceeding the maximum threshold of 15 minutes.</p>
3194
+ * <p>
3195
+ * <code>DEEP_INSPECTION_NO_INVENTORY</code> The Amazon Inspector plugin hasn't yet been able to collect an inventory of packages for this instance. This is usually the result of a pending scan, however, if this status persists after 6 hours, use SSM to ensure that the required Amazon Inspector associations exist and are running for the instance.</p>
3196
+ * <p/>
3147
3197
  */
3148
3198
  reason: ScanStatusReason | string | undefined;
3149
3199
  }
@@ -4756,7 +4806,7 @@ export interface Finding {
4756
4806
  awsAccountId: string | undefined;
4757
4807
  /**
4758
4808
  * @public
4759
- * <p>The type of the finding.</p>
4809
+ * <p>The type of the finding. The <code>type</code> value determines the valid values for <code>resource</code> in your request. For more information, see <a href="https://docs.aws.amazon.com/inspector/latest/user/findings-types.html">Finding types</a> in the Amazon Inspector user guide.</p>
4760
4810
  */
4761
4811
  type: FindingType | string | undefined;
4762
4812
  /**
@@ -4776,7 +4826,7 @@ export interface Finding {
4776
4826
  remediation: Remediation | undefined;
4777
4827
  /**
4778
4828
  * @public
4779
- * <p>The severity of the finding.</p>
4829
+ * <p>The severity of the finding. <code>UNTRIAGED</code> applies to <code>PACKAGE_VULNERABILITY</code> type findings that the vendor has not assigned a severity yet. For more information, see <a href="https://docs.aws.amazon.com/inspector/latest/user/findings-understanding-severity.html">Severity levels for findings</a> in the Amazon Inspector user guide.</p>
4780
4830
  */
4781
4831
  severity: Severity | string | undefined;
4782
4832
  /**
@@ -4801,7 +4851,7 @@ export interface Finding {
4801
4851
  status: FindingStatus | string | undefined;
4802
4852
  /**
4803
4853
  * @public
4804
- * <p>Contains information on the resources involved in a finding.</p>
4854
+ * <p>Contains information on the resources involved in a finding. The <code>resource</code> value determines the valid values for <code>type</code> in your request. For more information, see <a href="https://docs.aws.amazon.com/inspector/latest/user/findings-types.html">Finding types</a> in the Amazon Inspector user guide.</p>
4805
4855
  */
4806
4856
  resources: Resource[] | undefined;
4807
4857
  /**
@@ -5116,15 +5166,12 @@ export interface ListAccountPermissionsRequest {
5116
5166
  service?: Service | string;
5117
5167
  /**
5118
5168
  * @public
5119
- * <p>The maximum number of results to return in the response.</p>
5169
+ * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
5120
5170
  */
5121
5171
  maxResults?: number;
5122
5172
  /**
5123
5173
  * @public
5124
- * <p>A token to use for paginating results that are returned in the response. Set the value
5125
- * of this parameter to null for the first request to a list action. For subsequent calls, use
5126
- * the <code>NextToken</code> value returned from the previous request to continue listing
5127
- * results after the first page.</p>
5174
+ * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.</p>
5128
5175
  */
5129
5176
  nextToken?: string;
5130
5177
  }
@@ -5182,15 +5229,12 @@ export interface ListAccountPermissionsResponse {
5182
5229
  export interface ListCoverageRequest {
5183
5230
  /**
5184
5231
  * @public
5185
- * <p>The maximum number of results to return in the response.</p>
5232
+ * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
5186
5233
  */
5187
5234
  maxResults?: number;
5188
5235
  /**
5189
5236
  * @public
5190
- * <p>A token to use for paginating results that are returned in the response. Set the value
5191
- * of this parameter to null for the first request to a list action. For subsequent calls, use
5192
- * the <code>NextToken</code> value returned from the previous request to continue listing
5193
- * results after the first page.</p>
5237
+ * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
5194
5238
  */
5195
5239
  nextToken?: string;
5196
5240
  /**
@@ -5271,15 +5315,12 @@ export interface ListCoverageStatisticsResponse {
5271
5315
  export interface ListDelegatedAdminAccountsRequest {
5272
5316
  /**
5273
5317
  * @public
5274
- * <p>The maximum number of results to return in the response.</p>
5318
+ * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
5275
5319
  */
5276
5320
  maxResults?: number;
5277
5321
  /**
5278
5322
  * @public
5279
- * <p>A token to use for paginating results that are returned in the response. Set the value
5280
- * of this parameter to null for the first request to a list action. For subsequent calls, use
5281
- * the <code>NextToken</code> value returned from the previous request to continue listing
5282
- * results after the first page.</p>
5323
+ * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
5283
5324
  */
5284
5325
  nextToken?: string;
5285
5326
  }
@@ -5317,15 +5358,12 @@ export interface ListFiltersRequest {
5317
5358
  action?: FilterAction | string;
5318
5359
  /**
5319
5360
  * @public
5320
- * <p>A token to use for paginating results that are returned in the response. Set the value
5321
- * of this parameter to null for the first request to a list action. For subsequent calls, use
5322
- * the <code>NextToken</code> value returned from the previous request to continue listing
5323
- * results after the first page.</p>
5361
+ * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
5324
5362
  */
5325
5363
  nextToken?: string;
5326
5364
  /**
5327
5365
  * @public
5328
- * <p>The maximum number of results to return in the response.</p>
5366
+ * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
5329
5367
  */
5330
5368
  maxResults?: number;
5331
5369
  }
@@ -5358,15 +5396,12 @@ export interface ListFindingAggregationsRequest {
5358
5396
  aggregationType: AggregationType | string | undefined;
5359
5397
  /**
5360
5398
  * @public
5361
- * <p>A token to use for paginating results that are returned in the response. Set the value
5362
- * of this parameter to null for the first request to a list action. For subsequent calls, use
5363
- * the <code>NextToken</code> value returned from the previous request to continue listing
5364
- * results after the first page.</p>
5399
+ * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
5365
5400
  */
5366
5401
  nextToken?: string;
5367
5402
  /**
5368
5403
  * @public
5369
- * <p>The maximum number of results to return in the response.</p>
5404
+ * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
5370
5405
  */
5371
5406
  maxResults?: number;
5372
5407
  /**
@@ -5452,15 +5487,12 @@ export interface SortCriteria {
5452
5487
  export interface ListFindingsRequest {
5453
5488
  /**
5454
5489
  * @public
5455
- * <p>The maximum number of results to return in the response.</p>
5490
+ * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
5456
5491
  */
5457
5492
  maxResults?: number;
5458
5493
  /**
5459
5494
  * @public
5460
- * <p>A token to use for paginating results that are returned in the response. Set the value
5461
- * of this parameter to null for the first request to a list action. For subsequent calls, use
5462
- * the <code>NextToken</code> value returned from the previous request to continue listing
5463
- * results after the first page.</p>
5495
+ * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
5464
5496
  */
5465
5497
  nextToken?: string;
5466
5498
  /**
@@ -5504,15 +5536,12 @@ export interface ListMembersRequest {
5504
5536
  onlyAssociated?: boolean;
5505
5537
  /**
5506
5538
  * @public
5507
- * <p>The maximum number of results to return in the response.</p>
5539
+ * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
5508
5540
  */
5509
5541
  maxResults?: number;
5510
5542
  /**
5511
5543
  * @public
5512
- * <p>A token to use for paginating results that are returned in the response. Set the value
5513
- * of this parameter to null for the first request to a list action. For subsequent calls, use
5514
- * the <code>NextToken</code> value returned from the previous request to continue listing
5515
- * results after the first page.</p>
5544
+ * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
5516
5545
  */
5517
5546
  nextToken?: string;
5518
5547
  }
@@ -5558,15 +5587,12 @@ export interface ListTagsForResourceResponse {
5558
5587
  export interface ListUsageTotalsRequest {
5559
5588
  /**
5560
5589
  * @public
5561
- * <p>The maximum number of results to return in the response.</p>
5590
+ * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
5562
5591
  */
5563
5592
  maxResults?: number;
5564
5593
  /**
5565
5594
  * @public
5566
- * <p>A token to use for paginating results that are returned in the response. Set the value
5567
- * of this parameter to null for the first request to a list action. For subsequent calls, use
5568
- * the <code>NextToken</code> value returned from the previous request to continue listing
5569
- * results after the first page.</p>
5595
+ * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
5570
5596
  */
5571
5597
  nextToken?: string;
5572
5598
  /**
@@ -5730,7 +5756,7 @@ export interface Vulnerability {
5730
5756
  cisaData?: CisaData;
5731
5757
  /**
5732
5758
  * @public
5733
- * <p>The source of the vulnerability information.</p>
5759
+ * <p>The source of the vulnerability information. Possible results are <code>RHEL</code>, <code>AMAZON_CVE</code>, <code>DEBIAN</code> or <code>NVD</code>.</p>
5734
5760
  */
5735
5761
  source?: VulnerabilitySource | string;
5736
5762
  /**
@@ -1147,6 +1147,7 @@ export type CoverageResourceType =
1147
1147
  (typeof CoverageResourceType)[keyof typeof CoverageResourceType];
1148
1148
  export declare const Ec2Platform: {
1149
1149
  readonly LINUX: "LINUX";
1150
+ readonly MACOS: "MACOS";
1150
1151
  readonly UNKNOWN: "UNKNOWN";
1151
1152
  readonly WINDOWS: "WINDOWS";
1152
1153
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-inspector2",
3
3
  "description": "AWS SDK for JavaScript Inspector2 Client for Node.js, Browser and React Native",
4
- "version": "3.425.0",
4
+ "version": "3.428.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",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.425.0",
25
- "@aws-sdk/credential-provider-node": "3.425.0",
26
- "@aws-sdk/middleware-host-header": "3.425.0",
27
- "@aws-sdk/middleware-logger": "3.425.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.425.0",
29
- "@aws-sdk/middleware-signing": "3.425.0",
30
- "@aws-sdk/middleware-user-agent": "3.425.0",
31
- "@aws-sdk/region-config-resolver": "3.425.0",
32
- "@aws-sdk/types": "3.425.0",
33
- "@aws-sdk/util-endpoints": "3.425.0",
34
- "@aws-sdk/util-user-agent-browser": "3.425.0",
35
- "@aws-sdk/util-user-agent-node": "3.425.0",
36
- "@smithy/config-resolver": "^2.0.11",
37
- "@smithy/fetch-http-handler": "^2.2.1",
38
- "@smithy/hash-node": "^2.0.10",
39
- "@smithy/invalid-dependency": "^2.0.10",
40
- "@smithy/middleware-content-length": "^2.0.12",
41
- "@smithy/middleware-endpoint": "^2.0.10",
42
- "@smithy/middleware-retry": "^2.0.13",
43
- "@smithy/middleware-serde": "^2.0.10",
44
- "@smithy/middleware-stack": "^2.0.4",
45
- "@smithy/node-config-provider": "^2.0.13",
46
- "@smithy/node-http-handler": "^2.1.6",
47
- "@smithy/protocol-http": "^3.0.6",
48
- "@smithy/smithy-client": "^2.1.9",
49
- "@smithy/types": "^2.3.4",
50
- "@smithy/url-parser": "^2.0.10",
24
+ "@aws-sdk/client-sts": "3.428.0",
25
+ "@aws-sdk/credential-provider-node": "3.428.0",
26
+ "@aws-sdk/middleware-host-header": "3.428.0",
27
+ "@aws-sdk/middleware-logger": "3.428.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
+ "@aws-sdk/middleware-signing": "3.428.0",
30
+ "@aws-sdk/middleware-user-agent": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.428.0",
32
+ "@aws-sdk/types": "3.428.0",
33
+ "@aws-sdk/util-endpoints": "3.428.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.428.0",
35
+ "@aws-sdk/util-user-agent-node": "3.428.0",
36
+ "@smithy/config-resolver": "^2.0.14",
37
+ "@smithy/fetch-http-handler": "^2.2.3",
38
+ "@smithy/hash-node": "^2.0.11",
39
+ "@smithy/invalid-dependency": "^2.0.11",
40
+ "@smithy/middleware-content-length": "^2.0.13",
41
+ "@smithy/middleware-endpoint": "^2.1.0",
42
+ "@smithy/middleware-retry": "^2.0.16",
43
+ "@smithy/middleware-serde": "^2.0.11",
44
+ "@smithy/middleware-stack": "^2.0.5",
45
+ "@smithy/node-config-provider": "^2.1.1",
46
+ "@smithy/node-http-handler": "^2.1.7",
47
+ "@smithy/protocol-http": "^3.0.7",
48
+ "@smithy/smithy-client": "^2.1.11",
49
+ "@smithy/types": "^2.3.5",
50
+ "@smithy/url-parser": "^2.0.11",
51
51
  "@smithy/util-base64": "^2.0.0",
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.13",
55
- "@smithy/util-defaults-mode-node": "^2.0.15",
56
- "@smithy/util-retry": "^2.0.3",
54
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
55
+ "@smithy/util-defaults-mode-node": "^2.0.19",
56
+ "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0",
59
59
  "uuid": "^8.3.2"