@aws-sdk/client-ec2 3.814.0 → 3.816.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 (47) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +113 -9
  3. package/dist-es/EC2.js +2 -0
  4. package/dist-es/commands/ModifyPublicIpDnsNameOptionsCommand.js +22 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_2.js +0 -4
  7. package/dist-es/models/models_3.js +4 -3
  8. package/dist-es/models/models_4.js +3 -0
  9. package/dist-es/models/models_7.js +5 -0
  10. package/dist-es/protocols/Aws_ec2.js +79 -0
  11. package/dist-types/EC2.d.ts +7 -0
  12. package/dist-types/EC2Client.d.ts +3 -2
  13. package/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +8 -0
  14. package/dist-types/commands/DescribeLaunchTemplatesCommand.d.ts +2 -1
  15. package/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +8 -0
  16. package/dist-types/commands/DescribeVpnGatewaysCommand.d.ts +1 -2
  17. package/dist-types/commands/DisassociateAddressCommand.d.ts +12 -0
  18. package/dist-types/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +74 -0
  19. package/dist-types/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +1 -1
  20. package/dist-types/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +1 -2
  21. package/dist-types/commands/TerminateInstancesCommand.d.ts +4 -4
  22. package/dist-types/commands/index.d.ts +1 -0
  23. package/dist-types/models/models_2.d.ts +42 -13
  24. package/dist-types/models/models_3.d.ts +13 -12
  25. package/dist-types/models/models_4.d.ts +13 -18
  26. package/dist-types/models/models_5.d.ts +17 -72
  27. package/dist-types/models/models_6.d.ts +71 -21
  28. package/dist-types/models/models_7.d.ts +82 -76
  29. package/dist-types/models/models_8.d.ts +75 -1
  30. package/dist-types/protocols/Aws_ec2.d.ts +9 -0
  31. package/dist-types/ts3.4/EC2.d.ts +17 -0
  32. package/dist-types/ts3.4/EC2Client.d.ts +6 -0
  33. package/dist-types/ts3.4/commands/DescribeLaunchTemplatesCommand.d.ts +2 -4
  34. package/dist-types/ts3.4/commands/DescribeVpnGatewaysCommand.d.ts +4 -2
  35. package/dist-types/ts3.4/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +51 -0
  36. package/dist-types/ts3.4/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +4 -2
  38. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  39. package/dist-types/ts3.4/models/models_2.d.ts +9 -6
  40. package/dist-types/ts3.4/models/models_3.d.ts +6 -6
  41. package/dist-types/ts3.4/models/models_4.d.ts +5 -6
  42. package/dist-types/ts3.4/models/models_5.d.ts +5 -5
  43. package/dist-types/ts3.4/models/models_6.d.ts +5 -5
  44. package/dist-types/ts3.4/models/models_7.d.ts +21 -17
  45. package/dist-types/ts3.4/models/models_8.d.ts +15 -0
  46. package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
  47. package/package.json +5 -5
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EC2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EC2Client";
8
+ import {
9
+ ModifyPublicIpDnsNameOptionsRequest,
10
+ ModifyPublicIpDnsNameOptionsResult,
11
+ } from "../models/models_7";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ModifyPublicIpDnsNameOptionsCommandInput
15
+ extends ModifyPublicIpDnsNameOptionsRequest {}
16
+ export interface ModifyPublicIpDnsNameOptionsCommandOutput
17
+ extends ModifyPublicIpDnsNameOptionsResult,
18
+ __MetadataBearer {}
19
+ declare const ModifyPublicIpDnsNameOptionsCommand_base: {
20
+ new (
21
+ input: ModifyPublicIpDnsNameOptionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ModifyPublicIpDnsNameOptionsCommandInput,
24
+ ModifyPublicIpDnsNameOptionsCommandOutput,
25
+ EC2ClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ModifyPublicIpDnsNameOptionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ModifyPublicIpDnsNameOptionsCommandInput,
33
+ ModifyPublicIpDnsNameOptionsCommandOutput,
34
+ EC2ClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ModifyPublicIpDnsNameOptionsCommand extends ModifyPublicIpDnsNameOptionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ModifyPublicIpDnsNameOptionsRequest;
44
+ output: ModifyPublicIpDnsNameOptionsResult;
45
+ };
46
+ sdk: {
47
+ input: ModifyPublicIpDnsNameOptionsCommandInput;
48
+ output: ModifyPublicIpDnsNameOptionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ReplaceIamInstanceProfileAssociationRequest,
10
10
  ReplaceIamInstanceProfileAssociationResult,
11
- } from "../models/models_7";
11
+ } from "../models/models_8";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ReplaceIamInstanceProfileAssociationCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import { ReplaceImageCriteriaInAllowedImagesSettingsRequest } from "../models/models_7";
9
- import { ReplaceImageCriteriaInAllowedImagesSettingsResult } from "../models/models_8";
8
+ import {
9
+ ReplaceImageCriteriaInAllowedImagesSettingsRequest,
10
+ ReplaceImageCriteriaInAllowedImagesSettingsResult,
11
+ } from "../models/models_8";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface ReplaceImageCriteriaInAllowedImagesSettingsCommandInput
@@ -571,6 +571,7 @@ export * from "./ModifyLocalGatewayRouteCommand";
571
571
  export * from "./ModifyManagedPrefixListCommand";
572
572
  export * from "./ModifyNetworkInterfaceAttributeCommand";
573
573
  export * from "./ModifyPrivateDnsNameOptionsCommand";
574
+ export * from "./ModifyPublicIpDnsNameOptionsCommand";
574
575
  export * from "./ModifyReservedInstancesCommand";
575
576
  export * from "./ModifyRouteServerCommand";
576
577
  export * from "./ModifySecurityGroupRulesCommand";
@@ -705,6 +705,7 @@ export type NetworkInterfaceType =
705
705
  (typeof NetworkInterfaceType)[keyof typeof NetworkInterfaceType];
706
706
  export interface NetworkInterfaceIpv6Address {
707
707
  Ipv6Address?: string | undefined;
708
+ PublicIpv6DnsName?: string | undefined;
708
709
  IsPrimaryIpv6?: boolean | undefined;
709
710
  }
710
711
  export interface Ipv6PrefixSpecification {
@@ -716,6 +717,12 @@ export interface NetworkInterfacePrivateIpAddress {
716
717
  PrivateDnsName?: string | undefined;
717
718
  PrivateIpAddress?: string | undefined;
718
719
  }
720
+ export interface PublicIpDnsNameOptions {
721
+ DnsHostnameType?: string | undefined;
722
+ PublicIpv4DnsName?: string | undefined;
723
+ PublicIpv6DnsName?: string | undefined;
724
+ PublicDualStackDnsName?: string | undefined;
725
+ }
719
726
  export declare const NetworkInterfaceStatus: {
720
727
  readonly associated: "associated";
721
728
  readonly attaching: "attaching";
@@ -739,6 +746,8 @@ export interface NetworkInterface {
739
746
  OutpostArn?: string | undefined;
740
747
  OwnerId?: string | undefined;
741
748
  PrivateDnsName?: string | undefined;
749
+ PublicDnsName?: string | undefined;
750
+ PublicIpDnsNameOptions?: PublicIpDnsNameOptions | undefined;
742
751
  PrivateIpAddress?: string | undefined;
743
752
  PrivateIpAddresses?: NetworkInterfacePrivateIpAddress[] | undefined;
744
753
  Ipv4Prefixes?: Ipv4PrefixSpecification[] | undefined;
@@ -2329,12 +2338,6 @@ export interface CreateVpcEndpointConnectionNotificationRequest {
2329
2338
  ConnectionEvents: string[] | undefined;
2330
2339
  ClientToken?: string | undefined;
2331
2340
  }
2332
- export declare const ConnectionNotificationState: {
2333
- readonly Disabled: "Disabled";
2334
- readonly Enabled: "Enabled";
2335
- };
2336
- export type ConnectionNotificationState =
2337
- (typeof ConnectionNotificationState)[keyof typeof ConnectionNotificationState];
2338
2341
  export declare const ResponseLaunchTemplateDataFilterSensitiveLog: (
2339
2342
  obj: ResponseLaunchTemplateData
2340
2343
  ) => any;
@@ -41,7 +41,6 @@ import {
41
41
  LaunchTemplate,
42
42
  } from "./models_1";
43
43
  import {
44
- ConnectionNotificationState,
45
44
  GroupIdentifier,
46
45
  LocalGatewayRoute,
47
46
  LocalGatewayRouteTable,
@@ -67,6 +66,12 @@ import {
67
66
  VerifiedAccessGroup,
68
67
  VpcBlockPublicAccessExclusion,
69
68
  } from "./models_2";
69
+ export declare const ConnectionNotificationState: {
70
+ readonly Disabled: "Disabled";
71
+ readonly Enabled: "Enabled";
72
+ };
73
+ export type ConnectionNotificationState =
74
+ (typeof ConnectionNotificationState)[keyof typeof ConnectionNotificationState];
70
75
  export declare const ConnectionNotificationType: {
71
76
  readonly Topic: "Topic";
72
77
  };
@@ -1588,11 +1593,6 @@ export interface DescribeClientVpnEndpointsRequest {
1588
1593
  Filters?: Filter[] | undefined;
1589
1594
  DryRun?: boolean | undefined;
1590
1595
  }
1591
- export declare const AssociatedNetworkType: {
1592
- readonly vpc: "vpc";
1593
- };
1594
- export type AssociatedNetworkType =
1595
- (typeof AssociatedNetworkType)[keyof typeof AssociatedNetworkType];
1596
1596
  export declare const VpnTunnelOptionsSpecificationFilterSensitiveLog: (
1597
1597
  obj: VpnTunnelOptionsSpecification
1598
1598
  ) => any;
@@ -51,7 +51,6 @@ import {
51
51
  IpamResourceDiscovery,
52
52
  IpamScope,
53
53
  KeyType,
54
- LaunchTemplate,
55
54
  LaunchTemplateAndOverridesResponse,
56
55
  LogDestinationType,
57
56
  OperatorResponse,
@@ -69,13 +68,17 @@ import {
69
68
  StateReason,
70
69
  } from "./models_2";
71
70
  import {
72
- AssociatedNetworkType,
73
71
  Byoasn,
74
72
  Filter,
75
73
  FleetStateCode,
76
74
  IdFormat,
77
75
  InstanceTagNotificationAttribute,
78
76
  } from "./models_3";
77
+ export declare const AssociatedNetworkType: {
78
+ readonly vpc: "vpc";
79
+ };
80
+ export type AssociatedNetworkType =
81
+ (typeof AssociatedNetworkType)[keyof typeof AssociatedNetworkType];
79
82
  export interface AssociatedTargetNetwork {
80
83
  NetworkId?: string | undefined;
81
84
  NetworkType?: AssociatedNetworkType | undefined;
@@ -2092,10 +2095,6 @@ export interface DescribeLaunchTemplatesRequest {
2092
2095
  NextToken?: string | undefined;
2093
2096
  MaxResults?: number | undefined;
2094
2097
  }
2095
- export interface DescribeLaunchTemplatesResult {
2096
- LaunchTemplates?: LaunchTemplate[] | undefined;
2097
- NextToken?: string | undefined;
2098
- }
2099
2098
  export declare const DiskImageDescriptionFilterSensitiveLog: (
2100
2099
  obj: DiskImageDescription
2101
2100
  ) => any;
@@ -40,6 +40,7 @@ import {
40
40
  InstanceRequirements,
41
41
  Ipv4PrefixSpecificationRequest,
42
42
  Ipv6PrefixSpecificationRequest,
43
+ LaunchTemplate,
43
44
  MacModificationTask,
44
45
  PrivateIpAddressSpecification,
45
46
  SpotInstanceType,
@@ -113,6 +114,10 @@ import {
113
114
  PermissionGroup,
114
115
  ProductCode,
115
116
  } from "./models_4";
117
+ export interface DescribeLaunchTemplatesResult {
118
+ LaunchTemplates?: LaunchTemplate[] | undefined;
119
+ NextToken?: string | undefined;
120
+ }
116
121
  export interface DescribeLaunchTemplateVersionsRequest {
117
122
  DryRun?: boolean | undefined;
118
123
  LaunchTemplateId?: string | undefined;
@@ -2056,11 +2061,6 @@ export interface DescribeVpnConnectionsRequest {
2056
2061
  export interface DescribeVpnConnectionsResult {
2057
2062
  VpnConnections?: VpnConnection[] | undefined;
2058
2063
  }
2059
- export interface DescribeVpnGatewaysRequest {
2060
- Filters?: Filter[] | undefined;
2061
- VpnGatewayIds?: string[] | undefined;
2062
- DryRun?: boolean | undefined;
2063
- }
2064
2064
  export declare const DescribeLaunchTemplateVersionsResultFilterSensitiveLog: (
2065
2065
  obj: DescribeLaunchTemplateVersionsResult
2066
2066
  ) => any;
@@ -66,6 +66,11 @@ import {
66
66
  VirtualizationType,
67
67
  } from "./models_4";
68
68
  import { AnalysisStatus, ManagedBy } from "./models_5";
69
+ export interface DescribeVpnGatewaysRequest {
70
+ Filters?: Filter[] | undefined;
71
+ VpnGatewayIds?: string[] | undefined;
72
+ DryRun?: boolean | undefined;
73
+ }
69
74
  export interface DescribeVpnGatewaysResult {
70
75
  VpnGateways?: VpnGateway[] | undefined;
71
76
  }
@@ -1628,11 +1633,6 @@ export interface TransitGatewayPolicyRule {
1628
1633
  Protocol?: string | undefined;
1629
1634
  MetaData?: TransitGatewayPolicyRuleMetaData | undefined;
1630
1635
  }
1631
- export interface TransitGatewayPolicyTableEntry {
1632
- PolicyRuleNumber?: string | undefined;
1633
- PolicyRule?: TransitGatewayPolicyRule | undefined;
1634
- TargetRouteTableId?: string | undefined;
1635
- }
1636
1636
  export declare const DetachVerifiedAccessTrustProviderResultFilterSensitiveLog: (
1637
1637
  obj: DetachVerifiedAccessTrustProviderResult
1638
1638
  ) => any;
@@ -13,8 +13,6 @@ import {
13
13
  EnaSrdSpecification,
14
14
  HostMaintenance,
15
15
  HostRecovery,
16
- IamInstanceProfileAssociation,
17
- IamInstanceProfileSpecification,
18
16
  InstanceEventWindow,
19
17
  Ipv6SupportValue,
20
18
  SecurityGroupReferencingSupportValue,
@@ -154,10 +152,15 @@ import {
154
152
  InstanceFamilyCreditSpecification,
155
153
  IpamResourceCidr,
156
154
  Purchase,
157
- TransitGatewayPolicyTableEntry,
155
+ TransitGatewayPolicyRule,
158
156
  TransitGatewayPropagationState,
159
157
  UnlimitedSupportedInstanceFamily,
160
158
  } from "./models_6";
159
+ export interface TransitGatewayPolicyTableEntry {
160
+ PolicyRuleNumber?: string | undefined;
161
+ PolicyRule?: TransitGatewayPolicyRule | undefined;
162
+ TargetRouteTableId?: string | undefined;
163
+ }
161
164
  export interface GetTransitGatewayPolicyTableEntriesResult {
162
165
  TransitGatewayPolicyTableEntries?:
163
166
  | TransitGatewayPolicyTableEntry[]
@@ -993,6 +996,21 @@ export interface ModifyPrivateDnsNameOptionsRequest {
993
996
  export interface ModifyPrivateDnsNameOptionsResult {
994
997
  Return?: boolean | undefined;
995
998
  }
999
+ export declare const PublicIpDnsOption: {
1000
+ readonly public_dual_stack_dns_name: "public-dual-stack-dns-name";
1001
+ readonly public_ipv4_dns_name: "public-ipv4-dns-name";
1002
+ readonly public_ipv6_dns_name: "public-ipv6-dns-name";
1003
+ };
1004
+ export type PublicIpDnsOption =
1005
+ (typeof PublicIpDnsOption)[keyof typeof PublicIpDnsOption];
1006
+ export interface ModifyPublicIpDnsNameOptionsRequest {
1007
+ NetworkInterfaceId: string | undefined;
1008
+ HostnameType: PublicIpDnsOption | undefined;
1009
+ DryRun?: boolean | undefined;
1010
+ }
1011
+ export interface ModifyPublicIpDnsNameOptionsResult {
1012
+ Successful?: boolean | undefined;
1013
+ }
996
1014
  export interface ModifyReservedInstancesRequest {
997
1015
  ReservedInstancesIds: string[] | undefined;
998
1016
  ClientToken?: string | undefined;
@@ -1861,20 +1879,6 @@ export interface ReleaseIpamPoolAllocationRequest {
1861
1879
  export interface ReleaseIpamPoolAllocationResult {
1862
1880
  Success?: boolean | undefined;
1863
1881
  }
1864
- export interface ReplaceIamInstanceProfileAssociationRequest {
1865
- IamInstanceProfile: IamInstanceProfileSpecification | undefined;
1866
- AssociationId: string | undefined;
1867
- }
1868
- export interface ReplaceIamInstanceProfileAssociationResult {
1869
- IamInstanceProfileAssociation?: IamInstanceProfileAssociation | undefined;
1870
- }
1871
- export interface ImageCriterionRequest {
1872
- ImageProviders?: string[] | undefined;
1873
- }
1874
- export interface ReplaceImageCriteriaInAllowedImagesSettingsRequest {
1875
- ImageCriteria?: ImageCriterionRequest[] | undefined;
1876
- DryRun?: boolean | undefined;
1877
- }
1878
1882
  export declare const GetVpnConnectionDeviceSampleConfigurationResultFilterSensitiveLog: (
1879
1883
  obj: GetVpnConnectionDeviceSampleConfigurationResult
1880
1884
  ) => any;
@@ -3,6 +3,7 @@ import {
3
3
  AddressAttributeName,
4
4
  ByoipCidr,
5
5
  ClientVpnAuthorizationRuleStatus,
6
+ IamInstanceProfileAssociation,
6
7
  IamInstanceProfileSpecification,
7
8
  IpPermission,
8
9
  NatGatewayAddress,
@@ -61,6 +62,20 @@ import {
61
62
  InstanceMonitoring,
62
63
  Status,
63
64
  } from "./models_7";
65
+ export interface ReplaceIamInstanceProfileAssociationRequest {
66
+ IamInstanceProfile: IamInstanceProfileSpecification | undefined;
67
+ AssociationId: string | undefined;
68
+ }
69
+ export interface ReplaceIamInstanceProfileAssociationResult {
70
+ IamInstanceProfileAssociation?: IamInstanceProfileAssociation | undefined;
71
+ }
72
+ export interface ImageCriterionRequest {
73
+ ImageProviders?: string[] | undefined;
74
+ }
75
+ export interface ReplaceImageCriteriaInAllowedImagesSettingsRequest {
76
+ ImageCriteria?: ImageCriterionRequest[] | undefined;
77
+ DryRun?: boolean | undefined;
78
+ }
64
79
  export interface ReplaceImageCriteriaInAllowedImagesSettingsResult {
65
80
  ReturnValue?: boolean | undefined;
66
81
  }
@@ -2295,6 +2295,10 @@ import {
2295
2295
  ModifyPrivateDnsNameOptionsCommandInput,
2296
2296
  ModifyPrivateDnsNameOptionsCommandOutput,
2297
2297
  } from "../commands/ModifyPrivateDnsNameOptionsCommand";
2298
+ import {
2299
+ ModifyPublicIpDnsNameOptionsCommandInput,
2300
+ ModifyPublicIpDnsNameOptionsCommandOutput,
2301
+ } from "../commands/ModifyPublicIpDnsNameOptionsCommand";
2298
2302
  import {
2299
2303
  ModifyReservedInstancesCommandInput,
2300
2304
  ModifyReservedInstancesCommandOutput,
@@ -5031,6 +5035,10 @@ export declare const se_ModifyPrivateDnsNameOptionsCommand: (
5031
5035
  input: ModifyPrivateDnsNameOptionsCommandInput,
5032
5036
  context: __SerdeContext
5033
5037
  ) => Promise<__HttpRequest>;
5038
+ export declare const se_ModifyPublicIpDnsNameOptionsCommand: (
5039
+ input: ModifyPublicIpDnsNameOptionsCommandInput,
5040
+ context: __SerdeContext
5041
+ ) => Promise<__HttpRequest>;
5034
5042
  export declare const se_ModifyReservedInstancesCommand: (
5035
5043
  input: ModifyReservedInstancesCommandInput,
5036
5044
  context: __SerdeContext
@@ -7767,6 +7775,10 @@ export declare const de_ModifyPrivateDnsNameOptionsCommand: (
7767
7775
  output: __HttpResponse,
7768
7776
  context: __SerdeContext
7769
7777
  ) => Promise<ModifyPrivateDnsNameOptionsCommandOutput>;
7778
+ export declare const de_ModifyPublicIpDnsNameOptionsCommand: (
7779
+ output: __HttpResponse,
7780
+ context: __SerdeContext
7781
+ ) => Promise<ModifyPublicIpDnsNameOptionsCommandOutput>;
7770
7782
  export declare const de_ModifyReservedInstancesCommand: (
7771
7783
  output: __HttpResponse,
7772
7784
  context: __SerdeContext
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.814.0",
4
+ "version": "3.816.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-ec2",
@@ -20,18 +20,18 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.812.0",
24
- "@aws-sdk/credential-provider-node": "3.812.0",
23
+ "@aws-sdk/core": "3.816.0",
24
+ "@aws-sdk/credential-provider-node": "3.816.0",
25
25
  "@aws-sdk/middleware-host-header": "3.804.0",
26
26
  "@aws-sdk/middleware-logger": "3.804.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.804.0",
28
28
  "@aws-sdk/middleware-sdk-ec2": "3.810.0",
29
- "@aws-sdk/middleware-user-agent": "3.812.0",
29
+ "@aws-sdk/middleware-user-agent": "3.816.0",
30
30
  "@aws-sdk/region-config-resolver": "3.808.0",
31
31
  "@aws-sdk/types": "3.804.0",
32
32
  "@aws-sdk/util-endpoints": "3.808.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.804.0",
34
- "@aws-sdk/util-user-agent-node": "3.812.0",
34
+ "@aws-sdk/util-user-agent-node": "3.816.0",
35
35
  "@smithy/config-resolver": "^4.1.2",
36
36
  "@smithy/core": "^3.3.3",
37
37
  "@smithy/fetch-http-handler": "^5.0.2",