@aws-sdk/client-ec2 3.376.0 → 3.377.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.
@@ -53975,6 +53975,9 @@ const de_InferenceAcceleratorInfo = (output, context) => {
53975
53975
  else if (output["accelerators"] !== undefined && output["accelerators"]["member"] !== undefined) {
53976
53976
  contents.Accelerators = de_InferenceDeviceInfoList((0, smithy_client_1.getArrayIfSingleItem)(output["accelerators"]["member"]), context);
53977
53977
  }
53978
+ if (output["totalInferenceMemoryInMiB"] !== undefined) {
53979
+ contents.TotalInferenceMemoryInMiB = (0, smithy_client_1.strictParseInt32)(output["totalInferenceMemoryInMiB"]);
53980
+ }
53978
53981
  return contents;
53979
53982
  };
53980
53983
  const de_InferenceDeviceInfo = (output, context) => {
@@ -53988,6 +53991,9 @@ const de_InferenceDeviceInfo = (output, context) => {
53988
53991
  if (output["manufacturer"] !== undefined) {
53989
53992
  contents.Manufacturer = (0, smithy_client_1.expectString)(output["manufacturer"]);
53990
53993
  }
53994
+ if (output["memoryInfo"] !== undefined) {
53995
+ contents.MemoryInfo = de_InferenceDeviceMemoryInfo(output["memoryInfo"], context);
53996
+ }
53991
53997
  return contents;
53992
53998
  };
53993
53999
  const de_InferenceDeviceInfoList = (output, context) => {
@@ -53997,6 +54003,13 @@ const de_InferenceDeviceInfoList = (output, context) => {
53997
54003
  return de_InferenceDeviceInfo(entry, context);
53998
54004
  });
53999
54005
  };
54006
+ const de_InferenceDeviceMemoryInfo = (output, context) => {
54007
+ const contents = {};
54008
+ if (output["sizeInMiB"] !== undefined) {
54009
+ contents.SizeInMiB = (0, smithy_client_1.strictParseInt32)(output["sizeInMiB"]);
54010
+ }
54011
+ return contents;
54012
+ };
54000
54013
  const de_InsideCidrBlocksStringList = (output, context) => {
54001
54014
  return (output || [])
54002
54015
  .filter((e) => e != null)
@@ -57859,6 +57872,12 @@ const de_NetworkCardInfo = (output, context) => {
57859
57872
  if (output["maximumNetworkInterfaces"] !== undefined) {
57860
57873
  contents.MaximumNetworkInterfaces = (0, smithy_client_1.strictParseInt32)(output["maximumNetworkInterfaces"]);
57861
57874
  }
57875
+ if (output["baselineBandwidthInGbps"] !== undefined) {
57876
+ contents.BaselineBandwidthInGbps = (0, smithy_client_1.strictParseFloat)(output["baselineBandwidthInGbps"]);
57877
+ }
57878
+ if (output["peakBandwidthInGbps"] !== undefined) {
57879
+ contents.PeakBandwidthInGbps = (0, smithy_client_1.strictParseFloat)(output["peakBandwidthInGbps"]);
57880
+ }
57862
57881
  return contents;
57863
57882
  };
57864
57883
  const de_NetworkCardInfoList = (output, context) => {
@@ -52761,6 +52761,9 @@ const de_InferenceAcceleratorInfo = (output, context) => {
52761
52761
  else if (output["accelerators"] !== undefined && output["accelerators"]["member"] !== undefined) {
52762
52762
  contents.Accelerators = de_InferenceDeviceInfoList(__getArrayIfSingleItem(output["accelerators"]["member"]), context);
52763
52763
  }
52764
+ if (output["totalInferenceMemoryInMiB"] !== undefined) {
52765
+ contents.TotalInferenceMemoryInMiB = __strictParseInt32(output["totalInferenceMemoryInMiB"]);
52766
+ }
52764
52767
  return contents;
52765
52768
  };
52766
52769
  const de_InferenceDeviceInfo = (output, context) => {
@@ -52774,6 +52777,9 @@ const de_InferenceDeviceInfo = (output, context) => {
52774
52777
  if (output["manufacturer"] !== undefined) {
52775
52778
  contents.Manufacturer = __expectString(output["manufacturer"]);
52776
52779
  }
52780
+ if (output["memoryInfo"] !== undefined) {
52781
+ contents.MemoryInfo = de_InferenceDeviceMemoryInfo(output["memoryInfo"], context);
52782
+ }
52777
52783
  return contents;
52778
52784
  };
52779
52785
  const de_InferenceDeviceInfoList = (output, context) => {
@@ -52783,6 +52789,13 @@ const de_InferenceDeviceInfoList = (output, context) => {
52783
52789
  return de_InferenceDeviceInfo(entry, context);
52784
52790
  });
52785
52791
  };
52792
+ const de_InferenceDeviceMemoryInfo = (output, context) => {
52793
+ const contents = {};
52794
+ if (output["sizeInMiB"] !== undefined) {
52795
+ contents.SizeInMiB = __strictParseInt32(output["sizeInMiB"]);
52796
+ }
52797
+ return contents;
52798
+ };
52786
52799
  const de_InsideCidrBlocksStringList = (output, context) => {
52787
52800
  return (output || [])
52788
52801
  .filter((e) => e != null)
@@ -56645,6 +56658,12 @@ const de_NetworkCardInfo = (output, context) => {
56645
56658
  if (output["maximumNetworkInterfaces"] !== undefined) {
56646
56659
  contents.MaximumNetworkInterfaces = __strictParseInt32(output["maximumNetworkInterfaces"]);
56647
56660
  }
56661
+ if (output["baselineBandwidthInGbps"] !== undefined) {
56662
+ contents.BaselineBandwidthInGbps = __strictParseFloat(output["baselineBandwidthInGbps"]);
56663
+ }
56664
+ if (output["peakBandwidthInGbps"] !== undefined) {
56665
+ contents.PeakBandwidthInGbps = __strictParseFloat(output["peakBandwidthInGbps"]);
56666
+ }
56648
56667
  return contents;
56649
56668
  };
56650
56669
  const de_NetworkCardInfoList = (output, context) => {
@@ -125,6 +125,8 @@ export interface DescribeInstanceTypesCommandOutput extends DescribeInstanceType
125
125
  * // NetworkCardIndex: Number("int"),
126
126
  * // NetworkPerformance: "STRING_VALUE",
127
127
  * // MaximumNetworkInterfaces: Number("int"),
128
+ * // BaselineBandwidthInGbps: Number("double"),
129
+ * // PeakBandwidthInGbps: Number("double"),
128
130
  * // },
129
131
  * // ],
130
132
  * // Ipv4AddressesPerInterface: Number("int"),
@@ -175,8 +177,12 @@ export interface DescribeInstanceTypesCommandOutput extends DescribeInstanceType
175
177
  * // Count: Number("int"),
176
178
  * // Name: "STRING_VALUE",
177
179
  * // Manufacturer: "STRING_VALUE",
180
+ * // MemoryInfo: { // InferenceDeviceMemoryInfo
181
+ * // SizeInMiB: Number("int"),
182
+ * // },
178
183
  * // },
179
184
  * // ],
185
+ * // TotalInferenceMemoryInMiB: Number("int"),
180
186
  * // },
181
187
  * // HibernationSupported: true || false,
182
188
  * // BurstablePerformanceSupported: true || false,
@@ -1598,6 +1598,16 @@ export declare const InstanceTypeHypervisor: {
1598
1598
  * @public
1599
1599
  */
1600
1600
  export type InstanceTypeHypervisor = (typeof InstanceTypeHypervisor)[keyof typeof InstanceTypeHypervisor];
1601
+ /**
1602
+ * @public
1603
+ * <p>Describes the memory available to the inference accelerator.</p>
1604
+ */
1605
+ export interface InferenceDeviceMemoryInfo {
1606
+ /**
1607
+ * <p>The size of the memory available to the inference accelerator, in MiB.</p>
1608
+ */
1609
+ SizeInMiB?: number;
1610
+ }
1601
1611
  /**
1602
1612
  * @public
1603
1613
  * <p>Describes the Inference accelerators for the instance type.</p>
@@ -1615,6 +1625,10 @@ export interface InferenceDeviceInfo {
1615
1625
  * <p>The manufacturer of the Inference accelerator.</p>
1616
1626
  */
1617
1627
  Manufacturer?: string;
1628
+ /**
1629
+ * <p>Describes the memory available to the inference accelerator.</p>
1630
+ */
1631
+ MemoryInfo?: InferenceDeviceMemoryInfo;
1618
1632
  }
1619
1633
  /**
1620
1634
  * @public
@@ -1625,6 +1639,10 @@ export interface InferenceAcceleratorInfo {
1625
1639
  * <p>Describes the Inference accelerators for the instance type.</p>
1626
1640
  */
1627
1641
  Accelerators?: InferenceDeviceInfo[];
1642
+ /**
1643
+ * <p>The total size of the memory for the inference accelerators for the instance type, in MiB.</p>
1644
+ */
1645
+ TotalInferenceMemoryInMiB?: number;
1628
1646
  }
1629
1647
  /**
1630
1648
  * @public
@@ -1753,6 +1771,14 @@ export interface NetworkCardInfo {
1753
1771
  * <p>The maximum number of network interfaces for the network card.</p>
1754
1772
  */
1755
1773
  MaximumNetworkInterfaces?: number;
1774
+ /**
1775
+ * <p>The baseline network performance of the network card, in Gbps.</p>
1776
+ */
1777
+ BaselineBandwidthInGbps?: number;
1778
+ /**
1779
+ * <p>The peak (burst) network performance of the network card, in Gbps.</p>
1780
+ */
1781
+ PeakBandwidthInGbps?: number;
1756
1782
  }
1757
1783
  /**
1758
1784
  * @public
@@ -9768,24 +9794,6 @@ export interface VerifiedAccessLogDeliveryStatus {
9768
9794
  */
9769
9795
  Message?: string;
9770
9796
  }
9771
- /**
9772
- * @public
9773
- * <p>Options for CloudWatch Logs as a logging destination.</p>
9774
- */
9775
- export interface VerifiedAccessLogCloudWatchLogsDestination {
9776
- /**
9777
- * <p>Indicates whether logging is enabled.</p>
9778
- */
9779
- Enabled?: boolean;
9780
- /**
9781
- * <p>The delivery status for access logs.</p>
9782
- */
9783
- DeliveryStatus?: VerifiedAccessLogDeliveryStatus;
9784
- /**
9785
- * <p>The ID of the CloudWatch Logs log group.</p>
9786
- */
9787
- LogGroup?: string;
9788
- }
9789
9797
  /**
9790
9798
  * @internal
9791
9799
  */
@@ -2,7 +2,25 @@ import { AccessScopeAnalysisFinding, AddressTransfer, AllowedPrincipal, Associat
2
2
  import { DiskImageFormat, InstanceRequirementsRequest, IpamResourceTag, NetworkInsightsAccessScopeContent, RequestIpamResourceTag, ResponseLaunchTemplateData, TargetCapacityUnitType, VolumeType, Vpc } from "./models_1";
3
3
  import { ConnectionNotification, DnsEntry, DnsNameState, IpAddressType, PayerResponsibility, ServiceConfiguration, ServiceConnectivityType, ServiceTypeDetail, State, SubnetCidrReservation, TransitGatewayPrefixListReference, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
4
4
  import { AttributeBooleanValue, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchResourceType, FastLaunchSnapshotConfigurationResponse, FastLaunchStateCode, FastSnapshotRestoreStateCode, Filter, IpamPoolCidr, MetricType, PaymentOption, PeriodType, ProductCode, StatisticType, VirtualizationType } from "./models_3";
5
- import { AnalysisStatus, ArchitectureType, VerifiedAccessLogCloudWatchLogsDestination, VerifiedAccessLogDeliveryStatus } from "./models_4";
5
+ import { AnalysisStatus, ArchitectureType, VerifiedAccessLogDeliveryStatus } from "./models_4";
6
+ /**
7
+ * @public
8
+ * <p>Options for CloudWatch Logs as a logging destination.</p>
9
+ */
10
+ export interface VerifiedAccessLogCloudWatchLogsDestination {
11
+ /**
12
+ * <p>Indicates whether logging is enabled.</p>
13
+ */
14
+ Enabled?: boolean;
15
+ /**
16
+ * <p>The delivery status for access logs.</p>
17
+ */
18
+ DeliveryStatus?: VerifiedAccessLogDeliveryStatus;
19
+ /**
20
+ * <p>The ID of the CloudWatch Logs log group.</p>
21
+ */
22
+ LogGroup?: string;
23
+ }
6
24
  /**
7
25
  * @public
8
26
  * <p>Options for Kinesis as a logging destination.</p>
@@ -6624,20 +6642,6 @@ export interface ClientData {
6624
6642
  */
6625
6643
  UploadStart?: Date;
6626
6644
  }
6627
- /**
6628
- * @public
6629
- * <p>Describes the Amazon S3 bucket for the disk image.</p>
6630
- */
6631
- export interface UserBucket {
6632
- /**
6633
- * <p>The name of the Amazon S3 bucket where the disk image is located.</p>
6634
- */
6635
- S3Bucket?: string;
6636
- /**
6637
- * <p>The file name of the disk image.</p>
6638
- */
6639
- S3Key?: string;
6640
- }
6641
6645
  /**
6642
6646
  * @internal
6643
6647
  */
@@ -3,7 +3,21 @@ import { AmdSevSnpSpecification, AttributeValue, BlockDeviceMapping, CapacityRes
3
3
  import { AutoAcceptSharedAttachmentsValue, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DnsOptionsSpecification, IKEVersionsRequestListValue, IpAddressType, PayerResponsibility, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, SnapshotState, TrafficDirection, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorNetworkService, TrafficMirrorPortRangeRequest, TrafficMirrorRuleAction, TrafficMirrorSession, TransitGateway, TransitGatewayPrefixListReference, TransitGatewayRoute, VerifiedAccessEndpoint, VerifiedAccessEndpointProtocol, VerifiedAccessGroup, VpnConnection, VpnEcmpSupportValue, VpnTunnelLogOptionsSpecification } from "./models_2";
4
4
  import { ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, ImdsSupportValues, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceTagNotificationAttribute, IpamPoolCidr, LaunchPermission, PermissionGroup, SnapshotDetail, SnapshotTaskDetail, TpmSupportValues } from "./models_3";
5
5
  import { CreateVolumePermission, ExcessCapacityTerminationPolicy, HttpTokensState, InstanceAutoRecoveryState, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceNetworkInterfaceSpecification, InstanceStatusEvent, LaunchTemplateConfig, Monitoring, PublicIpv4PoolRange, ReservedInstancesConfiguration, RunInstancesMonitoringEnabled, ScheduledInstance, SnapshotAttributeName, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement } from "./models_4";
6
- import { ClientData, InstanceFamilyCreditSpecification, IpamResourceCidr, Purchase, UnlimitedSupportedInstanceFamily, UserBucket, VerifiedAccessInstanceLoggingConfiguration, VolumeModification } from "./models_5";
6
+ import { ClientData, InstanceFamilyCreditSpecification, IpamResourceCidr, Purchase, UnlimitedSupportedInstanceFamily, VerifiedAccessInstanceLoggingConfiguration, VolumeModification } from "./models_5";
7
+ /**
8
+ * @public
9
+ * <p>Describes the Amazon S3 bucket for the disk image.</p>
10
+ */
11
+ export interface UserBucket {
12
+ /**
13
+ * <p>The name of the Amazon S3 bucket where the disk image is located.</p>
14
+ */
15
+ S3Bucket?: string;
16
+ /**
17
+ * <p>The file name of the disk image.</p>
18
+ */
19
+ S3Key?: string;
20
+ }
7
21
  /**
8
22
  * @public
9
23
  * <p>Describes the disk container object for an import image task.</p>
@@ -7308,20 +7322,6 @@ export interface ScheduledInstancesNetworkInterface {
7308
7322
  */
7309
7323
  SubnetId?: string;
7310
7324
  }
7311
- /**
7312
- * @public
7313
- * <p>Describes the placement for a Scheduled Instance.</p>
7314
- */
7315
- export interface ScheduledInstancesPlacement {
7316
- /**
7317
- * <p>The Availability Zone.</p>
7318
- */
7319
- AvailabilityZone?: string;
7320
- /**
7321
- * <p>The name of the placement group.</p>
7322
- */
7323
- GroupName?: string;
7324
- }
7325
7325
  /**
7326
7326
  * @internal
7327
7327
  */
@@ -3,7 +3,21 @@ import { LocalGatewayRoute } from "./models_1";
3
3
  import { TransitGatewayRoute } from "./models_2";
4
4
  import { ClientVpnConnectionStatus, Filter } from "./models_3";
5
5
  import { InstanceState, NetworkInsightsAccessScopeAnalysis, NetworkInsightsAnalysis } from "./models_4";
6
- import { InstanceMonitoring, ScheduledInstancesBlockDeviceMapping, ScheduledInstancesIamInstanceProfile, ScheduledInstancesMonitoring, ScheduledInstancesNetworkInterface, ScheduledInstancesPlacement } from "./models_6";
6
+ import { InstanceMonitoring, ScheduledInstancesBlockDeviceMapping, ScheduledInstancesIamInstanceProfile, ScheduledInstancesMonitoring, ScheduledInstancesNetworkInterface } from "./models_6";
7
+ /**
8
+ * @public
9
+ * <p>Describes the placement for a Scheduled Instance.</p>
10
+ */
11
+ export interface ScheduledInstancesPlacement {
12
+ /**
13
+ * <p>The Availability Zone.</p>
14
+ */
15
+ AvailabilityZone?: string;
16
+ /**
17
+ * <p>The name of the placement group.</p>
18
+ */
19
+ GroupName?: string;
20
+ }
7
21
  /**
8
22
  * @public
9
23
  * <p>Describes the launch specification for a Scheduled Instance.</p>
@@ -466,13 +466,18 @@ export declare const InstanceTypeHypervisor: {
466
466
  };
467
467
  export type InstanceTypeHypervisor =
468
468
  (typeof InstanceTypeHypervisor)[keyof typeof InstanceTypeHypervisor];
469
+ export interface InferenceDeviceMemoryInfo {
470
+ SizeInMiB?: number;
471
+ }
469
472
  export interface InferenceDeviceInfo {
470
473
  Count?: number;
471
474
  Name?: string;
472
475
  Manufacturer?: string;
476
+ MemoryInfo?: InferenceDeviceMemoryInfo;
473
477
  }
474
478
  export interface InferenceAcceleratorInfo {
475
479
  Accelerators?: InferenceDeviceInfo[];
480
+ TotalInferenceMemoryInMiB?: number;
476
481
  }
477
482
  export declare const DiskType: {
478
483
  readonly hdd: "hdd";
@@ -519,6 +524,8 @@ export interface NetworkCardInfo {
519
524
  NetworkCardIndex?: number;
520
525
  NetworkPerformance?: string;
521
526
  MaximumNetworkInterfaces?: number;
527
+ BaselineBandwidthInGbps?: number;
528
+ PeakBandwidthInGbps?: number;
522
529
  }
523
530
  export interface NetworkInfo {
524
531
  NetworkPerformance?: string;
@@ -2077,11 +2084,6 @@ export interface VerifiedAccessLogDeliveryStatus {
2077
2084
  Code?: VerifiedAccessLogDeliveryStatusCode | string;
2078
2085
  Message?: string;
2079
2086
  }
2080
- export interface VerifiedAccessLogCloudWatchLogsDestination {
2081
- Enabled?: boolean;
2082
- DeliveryStatus?: VerifiedAccessLogDeliveryStatus;
2083
- LogGroup?: string;
2084
- }
2085
2087
  export declare const DescribeLaunchTemplateVersionsResultFilterSensitiveLog: (
2086
2088
  obj: DescribeLaunchTemplateVersionsResult
2087
2089
  ) => any;
@@ -74,9 +74,13 @@ import {
74
74
  import {
75
75
  AnalysisStatus,
76
76
  ArchitectureType,
77
- VerifiedAccessLogCloudWatchLogsDestination,
78
77
  VerifiedAccessLogDeliveryStatus,
79
78
  } from "./models_4";
79
+ export interface VerifiedAccessLogCloudWatchLogsDestination {
80
+ Enabled?: boolean;
81
+ DeliveryStatus?: VerifiedAccessLogDeliveryStatus;
82
+ LogGroup?: string;
83
+ }
80
84
  export interface VerifiedAccessLogKinesisDataFirehoseDestination {
81
85
  Enabled?: boolean;
82
86
  DeliveryStatus?: VerifiedAccessLogDeliveryStatus;
@@ -1658,10 +1662,6 @@ export interface ClientData {
1658
1662
  UploadSize?: number;
1659
1663
  UploadStart?: Date;
1660
1664
  }
1661
- export interface UserBucket {
1662
- S3Bucket?: string;
1663
- S3Key?: string;
1664
- }
1665
1665
  export declare const DescribeVerifiedAccessTrustProvidersResultFilterSensitiveLog: (
1666
1666
  obj: DescribeVerifiedAccessTrustProvidersResult
1667
1667
  ) => any;
@@ -147,10 +147,13 @@ import {
147
147
  IpamResourceCidr,
148
148
  Purchase,
149
149
  UnlimitedSupportedInstanceFamily,
150
- UserBucket,
151
150
  VerifiedAccessInstanceLoggingConfiguration,
152
151
  VolumeModification,
153
152
  } from "./models_5";
153
+ export interface UserBucket {
154
+ S3Bucket?: string;
155
+ S3Key?: string;
156
+ }
154
157
  export interface ImageDiskContainer {
155
158
  Description?: string;
156
159
  DeviceName?: string;
@@ -1871,10 +1874,6 @@ export interface ScheduledInstancesNetworkInterface {
1871
1874
  SecondaryPrivateIpAddressCount?: number;
1872
1875
  SubnetId?: string;
1873
1876
  }
1874
- export interface ScheduledInstancesPlacement {
1875
- AvailabilityZone?: string;
1876
- GroupName?: string;
1877
- }
1878
1877
  export declare const ImageDiskContainerFilterSensitiveLog: (
1879
1878
  obj: ImageDiskContainer
1880
1879
  ) => any;
@@ -19,8 +19,11 @@ import {
19
19
  ScheduledInstancesIamInstanceProfile,
20
20
  ScheduledInstancesMonitoring,
21
21
  ScheduledInstancesNetworkInterface,
22
- ScheduledInstancesPlacement,
23
22
  } from "./models_6";
23
+ export interface ScheduledInstancesPlacement {
24
+ AvailabilityZone?: string;
25
+ GroupName?: string;
26
+ }
24
27
  export interface ScheduledInstancesLaunchSpecification {
25
28
  BlockDeviceMappings?: ScheduledInstancesBlockDeviceMapping[];
26
29
  EbsOptimized?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ec2",
3
3
  "description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
4
- "version": "3.376.0",
4
+ "version": "3.377.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,7 +21,7 @@
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.370.0",
24
+ "@aws-sdk/client-sts": "3.377.0",
25
25
  "@aws-sdk/credential-provider-node": "3.370.0",
26
26
  "@aws-sdk/middleware-host-header": "3.370.0",
27
27
  "@aws-sdk/middleware-logger": "3.370.0",