@aws-sdk/client-ec2 3.301.0 → 3.303.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/README.md +16 -0
  2. package/dist-cjs/EC2.js +30 -0
  3. package/dist-cjs/commands/GetVpnTunnelReplacementStatusCommand.js +45 -0
  4. package/dist-cjs/commands/ReplaceVpnTunnelCommand.js +45 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/endpoint/ruleset.js +3 -3
  7. package/dist-cjs/models/models_0.js +1126 -1192
  8. package/dist-cjs/models/models_1.js +397 -469
  9. package/dist-cjs/models/models_2.js +280 -336
  10. package/dist-cjs/models/models_3.js +241 -286
  11. package/dist-cjs/models/models_4.js +197 -235
  12. package/dist-cjs/models/models_5.js +77 -91
  13. package/dist-cjs/models/models_6.js +65 -79
  14. package/dist-cjs/protocols/Aws_ec2.js +180 -15
  15. package/dist-es/EC2.js +30 -0
  16. package/dist-es/commands/GetVpnTunnelReplacementStatusCommand.js +41 -0
  17. package/dist-es/commands/ReplaceVpnTunnelCommand.js +41 -0
  18. package/dist-es/commands/index.js +2 -0
  19. package/dist-es/endpoint/ruleset.js +3 -3
  20. package/dist-es/models/models_0.js +1126 -1192
  21. package/dist-es/models/models_1.js +397 -469
  22. package/dist-es/models/models_2.js +280 -336
  23. package/dist-es/models/models_3.js +241 -286
  24. package/dist-es/models/models_4.js +197 -235
  25. package/dist-es/models/models_5.js +77 -91
  26. package/dist-es/models/models_6.js +65 -79
  27. package/dist-es/protocols/Aws_ec2.js +161 -0
  28. package/dist-types/EC2.d.ts +16 -0
  29. package/dist-types/EC2Client.d.ts +4 -2
  30. package/dist-types/commands/CreateVpnConnectionCommand.d.ts +1 -0
  31. package/dist-types/commands/GetVpnTunnelReplacementStatusCommand.d.ts +65 -0
  32. package/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
  33. package/dist-types/commands/ModifyVpnTunnelOptionsCommand.d.ts +2 -0
  34. package/dist-types/commands/ReplaceVpnTunnelCommand.d.ts +66 -0
  35. package/dist-types/commands/StartInstancesCommand.d.ts +2 -1
  36. package/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
  37. package/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +1 -2
  38. package/dist-types/commands/index.d.ts +2 -0
  39. package/dist-types/models/models_0.d.ts +1464 -1134
  40. package/dist-types/models/models_1.d.ts +757 -397
  41. package/dist-types/models/models_2.d.ts +568 -280
  42. package/dist-types/models/models_3.d.ts +466 -241
  43. package/dist-types/models/models_4.d.ts +387 -197
  44. package/dist-types/models/models_5.d.ts +212 -191
  45. package/dist-types/models/models_6.d.ts +290 -159
  46. package/dist-types/models/models_7.d.ts +95 -3
  47. package/dist-types/protocols/Aws_ec2.d.ts +6 -0
  48. package/dist-types/ts3.4/EC2.d.ts +34 -0
  49. package/dist-types/ts3.4/EC2Client.d.ts +12 -0
  50. package/dist-types/ts3.4/commands/GetVpnTunnelReplacementStatusCommand.d.ts +41 -0
  51. package/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/ReplaceVpnTunnelCommand.d.ts +37 -0
  53. package/dist-types/ts3.4/commands/StartInstancesCommand.d.ts +2 -4
  54. package/dist-types/ts3.4/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/StartNetworkInsightsAnalysisCommand.d.ts +4 -2
  56. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  57. package/dist-types/ts3.4/models/models_0.d.ts +1244 -1126
  58. package/dist-types/ts3.4/models/models_1.d.ts +523 -397
  59. package/dist-types/ts3.4/models/models_2.d.ts +381 -280
  60. package/dist-types/ts3.4/models/models_3.d.ts +324 -241
  61. package/dist-types/ts3.4/models/models_4.d.ts +261 -197
  62. package/dist-types/ts3.4/models/models_5.d.ts +123 -101
  63. package/dist-types/ts3.4/models/models_6.d.ts +126 -91
  64. package/dist-types/ts3.4/models/models_7.d.ts +37 -3
  65. package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +24 -0
  66. package/package.json +36 -36
@@ -254,19 +254,29 @@ export interface PropagatingVgw {
254
254
  }
255
255
  /**
256
256
  * @public
257
+ * @enum
257
258
  */
258
- export declare enum RouteOrigin {
259
- CreateRoute = "CreateRoute",
260
- CreateRouteTable = "CreateRouteTable",
261
- EnableVgwRoutePropagation = "EnableVgwRoutePropagation"
262
- }
259
+ export declare const RouteOrigin: {
260
+ readonly CreateRoute: "CreateRoute";
261
+ readonly CreateRouteTable: "CreateRouteTable";
262
+ readonly EnableVgwRoutePropagation: "EnableVgwRoutePropagation";
263
+ };
263
264
  /**
264
265
  * @public
265
266
  */
266
- export declare enum RouteState {
267
- active = "active",
268
- blackhole = "blackhole"
269
- }
267
+ export type RouteOrigin = (typeof RouteOrigin)[keyof typeof RouteOrigin];
268
+ /**
269
+ * @public
270
+ * @enum
271
+ */
272
+ export declare const RouteState: {
273
+ readonly active: "active";
274
+ readonly blackhole: "blackhole";
275
+ };
276
+ /**
277
+ * @public
278
+ */
279
+ export type RouteState = (typeof RouteState)[keyof typeof RouteState];
270
280
  /**
271
281
  * @public
272
282
  * <p>Describes a route in a route table.</p>
@@ -490,21 +500,31 @@ export interface CreateSnapshotRequest {
490
500
  }
491
501
  /**
492
502
  * @public
503
+ * @enum
493
504
  */
494
- export declare enum SnapshotState {
495
- completed = "completed",
496
- error = "error",
497
- pending = "pending",
498
- recoverable = "recoverable",
499
- recovering = "recovering"
500
- }
505
+ export declare const SnapshotState: {
506
+ readonly completed: "completed";
507
+ readonly error: "error";
508
+ readonly pending: "pending";
509
+ readonly recoverable: "recoverable";
510
+ readonly recovering: "recovering";
511
+ };
501
512
  /**
502
513
  * @public
503
514
  */
504
- export declare enum StorageTier {
505
- archive = "archive",
506
- standard = "standard"
507
- }
515
+ export type SnapshotState = (typeof SnapshotState)[keyof typeof SnapshotState];
516
+ /**
517
+ * @public
518
+ * @enum
519
+ */
520
+ export declare const StorageTier: {
521
+ readonly archive: "archive";
522
+ readonly standard: "standard";
523
+ };
524
+ /**
525
+ * @public
526
+ */
527
+ export type StorageTier = (typeof StorageTier)[keyof typeof StorageTier];
508
528
  /**
509
529
  * @public
510
530
  * <p>Describes a snapshot.</p>
@@ -597,10 +617,15 @@ export interface Snapshot {
597
617
  }
598
618
  /**
599
619
  * @public
620
+ * @enum
600
621
  */
601
- export declare enum CopyTagsFromSource {
602
- volume = "volume"
603
- }
622
+ export declare const CopyTagsFromSource: {
623
+ readonly volume: "volume";
624
+ };
625
+ /**
626
+ * @public
627
+ */
628
+ export type CopyTagsFromSource = (typeof CopyTagsFromSource)[keyof typeof CopyTagsFromSource];
604
629
  /**
605
630
  * @public
606
631
  * <p>The instance details to specify which volumes should be snapshotted.</p>
@@ -774,11 +799,16 @@ export interface SpotInstanceStateFault {
774
799
  }
775
800
  /**
776
801
  * @public
802
+ * @enum
777
803
  */
778
- export declare enum DatafeedSubscriptionState {
779
- Active = "Active",
780
- Inactive = "Inactive"
781
- }
804
+ export declare const DatafeedSubscriptionState: {
805
+ readonly Active: "Active";
806
+ readonly Inactive: "Inactive";
807
+ };
808
+ /**
809
+ * @public
810
+ */
811
+ export type DatafeedSubscriptionState = (typeof DatafeedSubscriptionState)[keyof typeof DatafeedSubscriptionState];
782
812
  /**
783
813
  * @public
784
814
  * <p>Describes the data feed for a Spot Instance.</p>
@@ -936,11 +966,16 @@ export interface CreateSubnetResult {
936
966
  }
937
967
  /**
938
968
  * @public
969
+ * @enum
939
970
  */
940
- export declare enum SubnetCidrReservationType {
941
- explicit = "explicit",
942
- prefix = "prefix"
943
- }
971
+ export declare const SubnetCidrReservationType: {
972
+ readonly explicit: "explicit";
973
+ readonly prefix: "prefix";
974
+ };
975
+ /**
976
+ * @public
977
+ */
978
+ export type SubnetCidrReservationType = (typeof SubnetCidrReservationType)[keyof typeof SubnetCidrReservationType];
944
979
  /**
945
980
  * @public
946
981
  */
@@ -1099,18 +1134,28 @@ export interface TrafficMirrorPortRange {
1099
1134
  }
1100
1135
  /**
1101
1136
  * @public
1137
+ * @enum
1102
1138
  */
1103
- export declare enum TrafficMirrorRuleAction {
1104
- accept = "accept",
1105
- reject = "reject"
1106
- }
1139
+ export declare const TrafficMirrorRuleAction: {
1140
+ readonly accept: "accept";
1141
+ readonly reject: "reject";
1142
+ };
1107
1143
  /**
1108
1144
  * @public
1109
1145
  */
1110
- export declare enum TrafficDirection {
1111
- egress = "egress",
1112
- ingress = "ingress"
1113
- }
1146
+ export type TrafficMirrorRuleAction = (typeof TrafficMirrorRuleAction)[keyof typeof TrafficMirrorRuleAction];
1147
+ /**
1148
+ * @public
1149
+ * @enum
1150
+ */
1151
+ export declare const TrafficDirection: {
1152
+ readonly egress: "egress";
1153
+ readonly ingress: "ingress";
1154
+ };
1155
+ /**
1156
+ * @public
1157
+ */
1158
+ export type TrafficDirection = (typeof TrafficDirection)[keyof typeof TrafficDirection];
1114
1159
  /**
1115
1160
  * @public
1116
1161
  * <p>Describes the Traffic Mirror rule.</p>
@@ -1163,10 +1208,15 @@ export interface TrafficMirrorFilterRule {
1163
1208
  }
1164
1209
  /**
1165
1210
  * @public
1211
+ * @enum
1166
1212
  */
1167
- export declare enum TrafficMirrorNetworkService {
1168
- amazon_dns = "amazon-dns"
1169
- }
1213
+ export declare const TrafficMirrorNetworkService: {
1214
+ readonly amazon_dns: "amazon-dns";
1215
+ };
1216
+ /**
1217
+ * @public
1218
+ */
1219
+ export type TrafficMirrorNetworkService = (typeof TrafficMirrorNetworkService)[keyof typeof TrafficMirrorNetworkService];
1170
1220
  /**
1171
1221
  * @public
1172
1222
  * <p>Describes the Traffic Mirror filter.</p>
@@ -1447,12 +1497,17 @@ export interface CreateTrafficMirrorTargetRequest {
1447
1497
  }
1448
1498
  /**
1449
1499
  * @public
1500
+ * @enum
1450
1501
  */
1451
- export declare enum TrafficMirrorTargetType {
1452
- gateway_load_balancer_endpoint = "gateway-load-balancer-endpoint",
1453
- network_interface = "network-interface",
1454
- network_load_balancer = "network-load-balancer"
1455
- }
1502
+ export declare const TrafficMirrorTargetType: {
1503
+ readonly gateway_load_balancer_endpoint: "gateway-load-balancer-endpoint";
1504
+ readonly network_interface: "network-interface";
1505
+ readonly network_load_balancer: "network-load-balancer";
1506
+ };
1507
+ /**
1508
+ * @public
1509
+ */
1510
+ export type TrafficMirrorTargetType = (typeof TrafficMirrorTargetType)[keyof typeof TrafficMirrorTargetType];
1456
1511
  /**
1457
1512
  * @public
1458
1513
  * <p>Describes a Traffic Mirror target.</p>
@@ -1506,39 +1561,64 @@ export interface CreateTrafficMirrorTargetResult {
1506
1561
  }
1507
1562
  /**
1508
1563
  * @public
1564
+ * @enum
1509
1565
  */
1510
- export declare enum AutoAcceptSharedAttachmentsValue {
1511
- disable = "disable",
1512
- enable = "enable"
1513
- }
1566
+ export declare const AutoAcceptSharedAttachmentsValue: {
1567
+ readonly disable: "disable";
1568
+ readonly enable: "enable";
1569
+ };
1514
1570
  /**
1515
1571
  * @public
1516
1572
  */
1517
- export declare enum DefaultRouteTableAssociationValue {
1518
- disable = "disable",
1519
- enable = "enable"
1520
- }
1573
+ export type AutoAcceptSharedAttachmentsValue = (typeof AutoAcceptSharedAttachmentsValue)[keyof typeof AutoAcceptSharedAttachmentsValue];
1521
1574
  /**
1522
1575
  * @public
1576
+ * @enum
1523
1577
  */
1524
- export declare enum DefaultRouteTablePropagationValue {
1525
- disable = "disable",
1526
- enable = "enable"
1527
- }
1578
+ export declare const DefaultRouteTableAssociationValue: {
1579
+ readonly disable: "disable";
1580
+ readonly enable: "enable";
1581
+ };
1528
1582
  /**
1529
1583
  * @public
1530
1584
  */
1531
- export declare enum MulticastSupportValue {
1532
- disable = "disable",
1533
- enable = "enable"
1534
- }
1585
+ export type DefaultRouteTableAssociationValue = (typeof DefaultRouteTableAssociationValue)[keyof typeof DefaultRouteTableAssociationValue];
1535
1586
  /**
1536
1587
  * @public
1588
+ * @enum
1537
1589
  */
1538
- export declare enum VpnEcmpSupportValue {
1539
- disable = "disable",
1540
- enable = "enable"
1541
- }
1590
+ export declare const DefaultRouteTablePropagationValue: {
1591
+ readonly disable: "disable";
1592
+ readonly enable: "enable";
1593
+ };
1594
+ /**
1595
+ * @public
1596
+ */
1597
+ export type DefaultRouteTablePropagationValue = (typeof DefaultRouteTablePropagationValue)[keyof typeof DefaultRouteTablePropagationValue];
1598
+ /**
1599
+ * @public
1600
+ * @enum
1601
+ */
1602
+ export declare const MulticastSupportValue: {
1603
+ readonly disable: "disable";
1604
+ readonly enable: "enable";
1605
+ };
1606
+ /**
1607
+ * @public
1608
+ */
1609
+ export type MulticastSupportValue = (typeof MulticastSupportValue)[keyof typeof MulticastSupportValue];
1610
+ /**
1611
+ * @public
1612
+ * @enum
1613
+ */
1614
+ export declare const VpnEcmpSupportValue: {
1615
+ readonly disable: "disable";
1616
+ readonly enable: "enable";
1617
+ };
1618
+ /**
1619
+ * @public
1620
+ */
1621
+ export type VpnEcmpSupportValue = (typeof VpnEcmpSupportValue)[keyof typeof VpnEcmpSupportValue];
1542
1622
  /**
1543
1623
  * @public
1544
1624
  * <p>Describes the options for a transit gateway.</p>
@@ -1650,14 +1730,19 @@ export interface TransitGatewayOptions {
1650
1730
  }
1651
1731
  /**
1652
1732
  * @public
1733
+ * @enum
1653
1734
  */
1654
- export declare enum TransitGatewayState {
1655
- available = "available",
1656
- deleted = "deleted",
1657
- deleting = "deleting",
1658
- modifying = "modifying",
1659
- pending = "pending"
1660
- }
1735
+ export declare const TransitGatewayState: {
1736
+ readonly available: "available";
1737
+ readonly deleted: "deleted";
1738
+ readonly deleting: "deleting";
1739
+ readonly modifying: "modifying";
1740
+ readonly pending: "pending";
1741
+ };
1742
+ /**
1743
+ * @public
1744
+ */
1745
+ export type TransitGatewayState = (typeof TransitGatewayState)[keyof typeof TransitGatewayState];
1661
1746
  /**
1662
1747
  * @public
1663
1748
  * <p>Describes a transit gateway.</p>
@@ -1707,10 +1792,15 @@ export interface CreateTransitGatewayResult {
1707
1792
  }
1708
1793
  /**
1709
1794
  * @public
1795
+ * @enum
1710
1796
  */
1711
- export declare enum ProtocolValue {
1712
- gre = "gre"
1713
- }
1797
+ export declare const ProtocolValue: {
1798
+ readonly gre: "gre";
1799
+ };
1800
+ /**
1801
+ * @public
1802
+ */
1803
+ export type ProtocolValue = (typeof ProtocolValue)[keyof typeof ProtocolValue];
1714
1804
  /**
1715
1805
  * @public
1716
1806
  * <p>The options for a Connect attachment.</p>
@@ -1850,11 +1940,16 @@ export interface CreateTransitGatewayConnectPeerRequest {
1850
1940
  }
1851
1941
  /**
1852
1942
  * @public
1943
+ * @enum
1853
1944
  */
1854
- export declare enum BgpStatus {
1855
- down = "down",
1856
- up = "up"
1857
- }
1945
+ export declare const BgpStatus: {
1946
+ readonly down: "down";
1947
+ readonly up: "up";
1948
+ };
1949
+ /**
1950
+ * @public
1951
+ */
1952
+ export type BgpStatus = (typeof BgpStatus)[keyof typeof BgpStatus];
1858
1953
  /**
1859
1954
  * @public
1860
1955
  * <p>The BGP configuration information.</p>
@@ -1909,13 +2004,18 @@ export interface TransitGatewayConnectPeerConfiguration {
1909
2004
  }
1910
2005
  /**
1911
2006
  * @public
2007
+ * @enum
1912
2008
  */
1913
- export declare enum TransitGatewayConnectPeerState {
1914
- available = "available",
1915
- deleted = "deleted",
1916
- deleting = "deleting",
1917
- pending = "pending"
1918
- }
2009
+ export declare const TransitGatewayConnectPeerState: {
2010
+ readonly available: "available";
2011
+ readonly deleted: "deleted";
2012
+ readonly deleting: "deleting";
2013
+ readonly pending: "pending";
2014
+ };
2015
+ /**
2016
+ * @public
2017
+ */
2018
+ export type TransitGatewayConnectPeerState = (typeof TransitGatewayConnectPeerState)[keyof typeof TransitGatewayConnectPeerState];
1919
2019
  /**
1920
2020
  * @public
1921
2021
  * <p>Describes a transit gateway Connect peer.</p>
@@ -1957,25 +2057,40 @@ export interface CreateTransitGatewayConnectPeerResult {
1957
2057
  }
1958
2058
  /**
1959
2059
  * @public
2060
+ * @enum
1960
2061
  */
1961
- export declare enum AutoAcceptSharedAssociationsValue {
1962
- disable = "disable",
1963
- enable = "enable"
1964
- }
2062
+ export declare const AutoAcceptSharedAssociationsValue: {
2063
+ readonly disable: "disable";
2064
+ readonly enable: "enable";
2065
+ };
1965
2066
  /**
1966
2067
  * @public
1967
2068
  */
1968
- export declare enum Igmpv2SupportValue {
1969
- disable = "disable",
1970
- enable = "enable"
1971
- }
2069
+ export type AutoAcceptSharedAssociationsValue = (typeof AutoAcceptSharedAssociationsValue)[keyof typeof AutoAcceptSharedAssociationsValue];
1972
2070
  /**
1973
2071
  * @public
2072
+ * @enum
1974
2073
  */
1975
- export declare enum StaticSourcesSupportValue {
1976
- disable = "disable",
1977
- enable = "enable"
1978
- }
2074
+ export declare const Igmpv2SupportValue: {
2075
+ readonly disable: "disable";
2076
+ readonly enable: "enable";
2077
+ };
2078
+ /**
2079
+ * @public
2080
+ */
2081
+ export type Igmpv2SupportValue = (typeof Igmpv2SupportValue)[keyof typeof Igmpv2SupportValue];
2082
+ /**
2083
+ * @public
2084
+ * @enum
2085
+ */
2086
+ export declare const StaticSourcesSupportValue: {
2087
+ readonly disable: "disable";
2088
+ readonly enable: "enable";
2089
+ };
2090
+ /**
2091
+ * @public
2092
+ */
2093
+ export type StaticSourcesSupportValue = (typeof StaticSourcesSupportValue)[keyof typeof StaticSourcesSupportValue];
1979
2094
  /**
1980
2095
  * @public
1981
2096
  * <p>The options for the transit gateway multicast domain.</p>
@@ -2037,13 +2152,18 @@ export interface TransitGatewayMulticastDomainOptions {
2037
2152
  }
2038
2153
  /**
2039
2154
  * @public
2155
+ * @enum
2040
2156
  */
2041
- export declare enum TransitGatewayMulticastDomainState {
2042
- available = "available",
2043
- deleted = "deleted",
2044
- deleting = "deleting",
2045
- pending = "pending"
2046
- }
2157
+ export declare const TransitGatewayMulticastDomainState: {
2158
+ readonly available: "available";
2159
+ readonly deleted: "deleted";
2160
+ readonly deleting: "deleting";
2161
+ readonly pending: "pending";
2162
+ };
2163
+ /**
2164
+ * @public
2165
+ */
2166
+ export type TransitGatewayMulticastDomainState = (typeof TransitGatewayMulticastDomainState)[keyof typeof TransitGatewayMulticastDomainState];
2047
2167
  /**
2048
2168
  * @public
2049
2169
  * <p>Describes the transit gateway multicast domain.</p>
@@ -2166,13 +2286,18 @@ export interface CreateTransitGatewayPolicyTableRequest {
2166
2286
  }
2167
2287
  /**
2168
2288
  * @public
2289
+ * @enum
2169
2290
  */
2170
- export declare enum TransitGatewayPolicyTableState {
2171
- available = "available",
2172
- deleted = "deleted",
2173
- deleting = "deleting",
2174
- pending = "pending"
2175
- }
2291
+ export declare const TransitGatewayPolicyTableState: {
2292
+ readonly available: "available";
2293
+ readonly deleted: "deleted";
2294
+ readonly deleting: "deleting";
2295
+ readonly pending: "pending";
2296
+ };
2297
+ /**
2298
+ * @public
2299
+ */
2300
+ export type TransitGatewayPolicyTableState = (typeof TransitGatewayPolicyTableState)[keyof typeof TransitGatewayPolicyTableState];
2176
2301
  /**
2177
2302
  * @public
2178
2303
  * <p>Describes a transit gateway policy table.</p>
@@ -2237,13 +2362,18 @@ export interface CreateTransitGatewayPrefixListReferenceRequest {
2237
2362
  }
2238
2363
  /**
2239
2364
  * @public
2365
+ * @enum
2240
2366
  */
2241
- export declare enum TransitGatewayPrefixListReferenceState {
2242
- available = "available",
2243
- deleting = "deleting",
2244
- modifying = "modifying",
2245
- pending = "pending"
2246
- }
2367
+ export declare const TransitGatewayPrefixListReferenceState: {
2368
+ readonly available: "available";
2369
+ readonly deleting: "deleting";
2370
+ readonly modifying: "modifying";
2371
+ readonly pending: "pending";
2372
+ };
2373
+ /**
2374
+ * @public
2375
+ */
2376
+ export type TransitGatewayPrefixListReferenceState = (typeof TransitGatewayPrefixListReferenceState)[keyof typeof TransitGatewayPrefixListReferenceState];
2247
2377
  /**
2248
2378
  * @public
2249
2379
  * <p>Describes a transit gateway prefix list attachment.</p>
@@ -2331,14 +2461,19 @@ export interface CreateTransitGatewayRouteRequest {
2331
2461
  }
2332
2462
  /**
2333
2463
  * @public
2464
+ * @enum
2334
2465
  */
2335
- export declare enum TransitGatewayRouteState {
2336
- active = "active",
2337
- blackhole = "blackhole",
2338
- deleted = "deleted",
2339
- deleting = "deleting",
2340
- pending = "pending"
2341
- }
2466
+ export declare const TransitGatewayRouteState: {
2467
+ readonly active: "active";
2468
+ readonly blackhole: "blackhole";
2469
+ readonly deleted: "deleted";
2470
+ readonly deleting: "deleting";
2471
+ readonly pending: "pending";
2472
+ };
2473
+ /**
2474
+ * @public
2475
+ */
2476
+ export type TransitGatewayRouteState = (typeof TransitGatewayRouteState)[keyof typeof TransitGatewayRouteState];
2342
2477
  /**
2343
2478
  * @public
2344
2479
  * <p>Describes a route attachment.</p>
@@ -2359,11 +2494,16 @@ export interface TransitGatewayRouteAttachment {
2359
2494
  }
2360
2495
  /**
2361
2496
  * @public
2497
+ * @enum
2362
2498
  */
2363
- export declare enum TransitGatewayRouteType {
2364
- propagated = "propagated",
2365
- static = "static"
2366
- }
2499
+ export declare const TransitGatewayRouteType: {
2500
+ readonly propagated: "propagated";
2501
+ readonly static: "static";
2502
+ };
2503
+ /**
2504
+ * @public
2505
+ */
2506
+ export type TransitGatewayRouteType = (typeof TransitGatewayRouteType)[keyof typeof TransitGatewayRouteType];
2367
2507
  /**
2368
2508
  * @public
2369
2509
  * <p>Describes a route for a transit gateway route table.</p>
@@ -2424,13 +2564,18 @@ export interface CreateTransitGatewayRouteTableRequest {
2424
2564
  }
2425
2565
  /**
2426
2566
  * @public
2567
+ * @enum
2427
2568
  */
2428
- export declare enum TransitGatewayRouteTableState {
2429
- available = "available",
2430
- deleted = "deleted",
2431
- deleting = "deleting",
2432
- pending = "pending"
2433
- }
2569
+ export declare const TransitGatewayRouteTableState: {
2570
+ readonly available: "available";
2571
+ readonly deleted: "deleted";
2572
+ readonly deleting: "deleting";
2573
+ readonly pending: "pending";
2574
+ };
2575
+ /**
2576
+ * @public
2577
+ */
2578
+ export type TransitGatewayRouteTableState = (typeof TransitGatewayRouteTableState)[keyof typeof TransitGatewayRouteTableState];
2434
2579
  /**
2435
2580
  * @public
2436
2581
  * <p>Describes a transit gateway route table.</p>
@@ -2499,22 +2644,32 @@ export interface CreateTransitGatewayRouteTableAnnouncementRequest {
2499
2644
  }
2500
2645
  /**
2501
2646
  * @public
2647
+ * @enum
2502
2648
  */
2503
- export declare enum TransitGatewayRouteTableAnnouncementDirection {
2504
- incoming = "incoming",
2505
- outgoing = "outgoing"
2506
- }
2649
+ export declare const TransitGatewayRouteTableAnnouncementDirection: {
2650
+ readonly incoming: "incoming";
2651
+ readonly outgoing: "outgoing";
2652
+ };
2507
2653
  /**
2508
2654
  * @public
2509
2655
  */
2510
- export declare enum TransitGatewayRouteTableAnnouncementState {
2511
- available = "available",
2512
- deleted = "deleted",
2513
- deleting = "deleting",
2514
- failed = "failed",
2515
- failing = "failing",
2516
- pending = "pending"
2517
- }
2656
+ export type TransitGatewayRouteTableAnnouncementDirection = (typeof TransitGatewayRouteTableAnnouncementDirection)[keyof typeof TransitGatewayRouteTableAnnouncementDirection];
2657
+ /**
2658
+ * @public
2659
+ * @enum
2660
+ */
2661
+ export declare const TransitGatewayRouteTableAnnouncementState: {
2662
+ readonly available: "available";
2663
+ readonly deleted: "deleted";
2664
+ readonly deleting: "deleting";
2665
+ readonly failed: "failed";
2666
+ readonly failing: "failing";
2667
+ readonly pending: "pending";
2668
+ };
2669
+ /**
2670
+ * @public
2671
+ */
2672
+ export type TransitGatewayRouteTableAnnouncementState = (typeof TransitGatewayRouteTableAnnouncementState)[keyof typeof TransitGatewayRouteTableAnnouncementState];
2518
2673
  /**
2519
2674
  * @public
2520
2675
  * <p>Describes a transit gateway route table announcement.</p>
@@ -2636,24 +2791,39 @@ export interface CreateTransitGatewayVpcAttachmentResult {
2636
2791
  }
2637
2792
  /**
2638
2793
  * @public
2794
+ * @enum
2639
2795
  */
2640
- export declare enum VerifiedAccessEndpointAttachmentType {
2641
- vpc = "vpc"
2642
- }
2796
+ export declare const VerifiedAccessEndpointAttachmentType: {
2797
+ readonly vpc: "vpc";
2798
+ };
2643
2799
  /**
2644
2800
  * @public
2645
2801
  */
2646
- export declare enum VerifiedAccessEndpointType {
2647
- load_balancer = "load-balancer",
2648
- network_interface = "network-interface"
2649
- }
2802
+ export type VerifiedAccessEndpointAttachmentType = (typeof VerifiedAccessEndpointAttachmentType)[keyof typeof VerifiedAccessEndpointAttachmentType];
2650
2803
  /**
2651
2804
  * @public
2805
+ * @enum
2652
2806
  */
2653
- export declare enum VerifiedAccessEndpointProtocol {
2654
- http = "http",
2655
- https = "https"
2656
- }
2807
+ export declare const VerifiedAccessEndpointType: {
2808
+ readonly load_balancer: "load-balancer";
2809
+ readonly network_interface: "network-interface";
2810
+ };
2811
+ /**
2812
+ * @public
2813
+ */
2814
+ export type VerifiedAccessEndpointType = (typeof VerifiedAccessEndpointType)[keyof typeof VerifiedAccessEndpointType];
2815
+ /**
2816
+ * @public
2817
+ * @enum
2818
+ */
2819
+ export declare const VerifiedAccessEndpointProtocol: {
2820
+ readonly http: "http";
2821
+ readonly https: "https";
2822
+ };
2823
+ /**
2824
+ * @public
2825
+ */
2826
+ export type VerifiedAccessEndpointProtocol = (typeof VerifiedAccessEndpointProtocol)[keyof typeof VerifiedAccessEndpointProtocol];
2657
2827
  /**
2658
2828
  * @public
2659
2829
  * <p>Describes a load balancer when creating an Amazon Web Services Verified Access endpoint using the
@@ -2806,14 +2976,19 @@ export interface VerifiedAccessEndpointEniOptions {
2806
2976
  }
2807
2977
  /**
2808
2978
  * @public
2979
+ * @enum
2809
2980
  */
2810
- export declare enum VerifiedAccessEndpointStatusCode {
2811
- active = "active",
2812
- deleted = "deleted",
2813
- deleting = "deleting",
2814
- pending = "pending",
2815
- updating = "updating"
2816
- }
2981
+ export declare const VerifiedAccessEndpointStatusCode: {
2982
+ readonly active: "active";
2983
+ readonly deleted: "deleted";
2984
+ readonly deleting: "deleting";
2985
+ readonly pending: "pending";
2986
+ readonly updating: "updating";
2987
+ };
2988
+ /**
2989
+ * @public
2990
+ */
2991
+ export type VerifiedAccessEndpointStatusCode = (typeof VerifiedAccessEndpointStatusCode)[keyof typeof VerifiedAccessEndpointStatusCode];
2817
2992
  /**
2818
2993
  * @public
2819
2994
  * <p>Describes the status of a Verified Access endpoint.</p>
@@ -3307,15 +3482,20 @@ export interface CreateVolumeRequest {
3307
3482
  }
3308
3483
  /**
3309
3484
  * @public
3485
+ * @enum
3310
3486
  */
3311
- export declare enum VolumeState {
3312
- available = "available",
3313
- creating = "creating",
3314
- deleted = "deleted",
3315
- deleting = "deleting",
3316
- error = "error",
3317
- in_use = "in-use"
3318
- }
3487
+ export declare const VolumeState: {
3488
+ readonly available: "available";
3489
+ readonly creating: "creating";
3490
+ readonly deleted: "deleted";
3491
+ readonly deleting: "deleting";
3492
+ readonly error: "error";
3493
+ readonly in_use: "in-use";
3494
+ };
3495
+ /**
3496
+ * @public
3497
+ */
3498
+ export type VolumeState = (typeof VolumeState)[keyof typeof VolumeState];
3319
3499
  /**
3320
3500
  * @public
3321
3501
  * <p>Describes a volume.</p>
@@ -3469,13 +3649,18 @@ export interface CreateVpcResult {
3469
3649
  }
3470
3650
  /**
3471
3651
  * @public
3652
+ * @enum
3472
3653
  */
3473
- export declare enum DnsRecordIpType {
3474
- dualstack = "dualstack",
3475
- ipv4 = "ipv4",
3476
- ipv6 = "ipv6",
3477
- service_defined = "service-defined"
3478
- }
3654
+ export declare const DnsRecordIpType: {
3655
+ readonly dualstack: "dualstack";
3656
+ readonly ipv4: "ipv4";
3657
+ readonly ipv6: "ipv6";
3658
+ readonly service_defined: "service-defined";
3659
+ };
3660
+ /**
3661
+ * @public
3662
+ */
3663
+ export type DnsRecordIpType = (typeof DnsRecordIpType)[keyof typeof DnsRecordIpType];
3479
3664
  /**
3480
3665
  * @public
3481
3666
  * <p>Describes the DNS options for an endpoint.</p>
@@ -3495,20 +3680,30 @@ export interface DnsOptionsSpecification {
3495
3680
  }
3496
3681
  /**
3497
3682
  * @public
3683
+ * @enum
3498
3684
  */
3499
- export declare enum IpAddressType {
3500
- dualstack = "dualstack",
3501
- ipv4 = "ipv4",
3502
- ipv6 = "ipv6"
3503
- }
3685
+ export declare const IpAddressType: {
3686
+ readonly dualstack: "dualstack";
3687
+ readonly ipv4: "ipv4";
3688
+ readonly ipv6: "ipv6";
3689
+ };
3504
3690
  /**
3505
3691
  * @public
3506
3692
  */
3507
- export declare enum VpcEndpointType {
3508
- Gateway = "Gateway",
3509
- GatewayLoadBalancer = "GatewayLoadBalancer",
3510
- Interface = "Interface"
3511
- }
3693
+ export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
3694
+ /**
3695
+ * @public
3696
+ * @enum
3697
+ */
3698
+ export declare const VpcEndpointType: {
3699
+ readonly Gateway: "Gateway";
3700
+ readonly GatewayLoadBalancer: "GatewayLoadBalancer";
3701
+ readonly Interface: "Interface";
3702
+ };
3703
+ /**
3704
+ * @public
3705
+ */
3706
+ export type VpcEndpointType = (typeof VpcEndpointType)[keyof typeof VpcEndpointType];
3512
3707
  /**
3513
3708
  * @public
3514
3709
  */
@@ -3646,17 +3841,22 @@ export interface LastError {
3646
3841
  }
3647
3842
  /**
3648
3843
  * @public
3844
+ * @enum
3649
3845
  */
3650
- export declare enum State {
3651
- Available = "Available",
3652
- Deleted = "Deleted",
3653
- Deleting = "Deleting",
3654
- Expired = "Expired",
3655
- Failed = "Failed",
3656
- Pending = "Pending",
3657
- PendingAcceptance = "PendingAcceptance",
3658
- Rejected = "Rejected"
3659
- }
3846
+ export declare const State: {
3847
+ readonly Available: "Available";
3848
+ readonly Deleted: "Deleted";
3849
+ readonly Deleting: "Deleting";
3850
+ readonly Expired: "Expired";
3851
+ readonly Failed: "Failed";
3852
+ readonly Pending: "Pending";
3853
+ readonly PendingAcceptance: "PendingAcceptance";
3854
+ readonly Rejected: "Rejected";
3855
+ };
3856
+ /**
3857
+ * @public
3858
+ */
3859
+ export type State = (typeof State)[keyof typeof State];
3660
3860
  /**
3661
3861
  * @public
3662
3862
  * <p>Describes a VPC endpoint.</p>
@@ -3791,17 +3991,27 @@ export interface CreateVpcEndpointConnectionNotificationRequest {
3791
3991
  }
3792
3992
  /**
3793
3993
  * @public
3994
+ * @enum
3794
3995
  */
3795
- export declare enum ConnectionNotificationState {
3796
- Disabled = "Disabled",
3797
- Enabled = "Enabled"
3798
- }
3996
+ export declare const ConnectionNotificationState: {
3997
+ readonly Disabled: "Disabled";
3998
+ readonly Enabled: "Enabled";
3999
+ };
3799
4000
  /**
3800
4001
  * @public
3801
4002
  */
3802
- export declare enum ConnectionNotificationType {
3803
- Topic = "Topic"
3804
- }
4003
+ export type ConnectionNotificationState = (typeof ConnectionNotificationState)[keyof typeof ConnectionNotificationState];
4004
+ /**
4005
+ * @public
4006
+ * @enum
4007
+ */
4008
+ export declare const ConnectionNotificationType: {
4009
+ readonly Topic: "Topic";
4010
+ };
4011
+ /**
4012
+ * @public
4013
+ */
4014
+ export type ConnectionNotificationType = (typeof ConnectionNotificationType)[keyof typeof ConnectionNotificationType];
3805
4015
  /**
3806
4016
  * @public
3807
4017
  * <p>Describes a connection notification for a VPC endpoint or VPC endpoint
@@ -3896,18 +4106,28 @@ export interface CreateVpcEndpointServiceConfigurationRequest {
3896
4106
  }
3897
4107
  /**
3898
4108
  * @public
4109
+ * @enum
3899
4110
  */
3900
- export declare enum PayerResponsibility {
3901
- ServiceOwner = "ServiceOwner"
3902
- }
4111
+ export declare const PayerResponsibility: {
4112
+ readonly ServiceOwner: "ServiceOwner";
4113
+ };
3903
4114
  /**
3904
4115
  * @public
3905
4116
  */
3906
- export declare enum DnsNameState {
3907
- Failed = "failed",
3908
- PendingVerification = "pendingVerification",
3909
- Verified = "verified"
3910
- }
4117
+ export type PayerResponsibility = (typeof PayerResponsibility)[keyof typeof PayerResponsibility];
4118
+ /**
4119
+ * @public
4120
+ * @enum
4121
+ */
4122
+ export declare const DnsNameState: {
4123
+ readonly Failed: "failed";
4124
+ readonly PendingVerification: "pendingVerification";
4125
+ readonly Verified: "verified";
4126
+ };
4127
+ /**
4128
+ * @public
4129
+ */
4130
+ export type DnsNameState = (typeof DnsNameState)[keyof typeof DnsNameState];
3911
4131
  /**
3912
4132
  * @public
3913
4133
  * <p>Information about the private DNS name for the service endpoint.</p>
@@ -3935,22 +4155,32 @@ export interface PrivateDnsNameConfiguration {
3935
4155
  }
3936
4156
  /**
3937
4157
  * @public
4158
+ * @enum
3938
4159
  */
3939
- export declare enum ServiceState {
3940
- Available = "Available",
3941
- Deleted = "Deleted",
3942
- Deleting = "Deleting",
3943
- Failed = "Failed",
3944
- Pending = "Pending"
3945
- }
4160
+ export declare const ServiceState: {
4161
+ readonly Available: "Available";
4162
+ readonly Deleted: "Deleted";
4163
+ readonly Deleting: "Deleting";
4164
+ readonly Failed: "Failed";
4165
+ readonly Pending: "Pending";
4166
+ };
3946
4167
  /**
3947
4168
  * @public
3948
4169
  */
3949
- export declare enum ServiceType {
3950
- Gateway = "Gateway",
3951
- GatewayLoadBalancer = "GatewayLoadBalancer",
3952
- Interface = "Interface"
3953
- }
4170
+ export type ServiceState = (typeof ServiceState)[keyof typeof ServiceState];
4171
+ /**
4172
+ * @public
4173
+ * @enum
4174
+ */
4175
+ export declare const ServiceType: {
4176
+ readonly Gateway: "Gateway";
4177
+ readonly GatewayLoadBalancer: "GatewayLoadBalancer";
4178
+ readonly Interface: "Interface";
4179
+ };
4180
+ /**
4181
+ * @public
4182
+ */
4183
+ export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
3954
4184
  /**
3955
4185
  * @public
3956
4186
  * <p>Describes the type of service for a VPC endpoint.</p>
@@ -3963,11 +4193,16 @@ export interface ServiceTypeDetail {
3963
4193
  }
3964
4194
  /**
3965
4195
  * @public
4196
+ * @enum
3966
4197
  */
3967
- export declare enum ServiceConnectivityType {
3968
- ipv4 = "ipv4",
3969
- ipv6 = "ipv6"
3970
- }
4198
+ export declare const ServiceConnectivityType: {
4199
+ readonly ipv4: "ipv4";
4200
+ readonly ipv6: "ipv6";
4201
+ };
4202
+ /**
4203
+ * @public
4204
+ */
4205
+ export type ServiceConnectivityType = (typeof ServiceConnectivityType)[keyof typeof ServiceConnectivityType];
3971
4206
  /**
3972
4207
  * @public
3973
4208
  * <p>Describes a service configuration for a VPC endpoint service.</p>
@@ -4096,11 +4331,16 @@ export interface CreateVpcPeeringConnectionResult {
4096
4331
  }
4097
4332
  /**
4098
4333
  * @public
4334
+ * @enum
4099
4335
  */
4100
- export declare enum TunnelInsideIpVersion {
4101
- ipv4 = "ipv4",
4102
- ipv6 = "ipv6"
4103
- }
4336
+ export declare const TunnelInsideIpVersion: {
4337
+ readonly ipv4: "ipv4";
4338
+ readonly ipv6: "ipv6";
4339
+ };
4340
+ /**
4341
+ * @public
4342
+ */
4343
+ export type TunnelInsideIpVersion = (typeof TunnelInsideIpVersion)[keyof typeof TunnelInsideIpVersion];
4104
4344
  /**
4105
4345
  * @public
4106
4346
  * <p>The IKE version that is permitted for the VPN tunnel.</p>
@@ -4400,6 +4640,10 @@ export interface VpnTunnelOptionsSpecification {
4400
4640
  * <p>Options for logging VPN tunnel activity.</p>
4401
4641
  */
4402
4642
  LogOptions?: VpnTunnelLogOptionsSpecification;
4643
+ /**
4644
+ * <p>Turn on or off tunnel endpoint lifecycle control feature.</p>
4645
+ */
4646
+ EnableTunnelLifecycleControl?: boolean;
4403
4647
  }
4404
4648
  /**
4405
4649
  * @public
@@ -4509,13 +4753,18 @@ export interface CreateVpnConnectionRequest {
4509
4753
  }
4510
4754
  /**
4511
4755
  * @public
4756
+ * @enum
4512
4757
  */
4513
- export declare enum GatewayAssociationState {
4514
- associated = "associated",
4515
- associating = "associating",
4516
- disassociating = "disassociating",
4517
- not_associated = "not-associated"
4518
- }
4758
+ export declare const GatewayAssociationState: {
4759
+ readonly associated: "associated";
4760
+ readonly associating: "associating";
4761
+ readonly disassociating: "disassociating";
4762
+ readonly not_associated: "not-associated";
4763
+ };
4764
+ /**
4765
+ * @public
4766
+ */
4767
+ export type GatewayAssociationState = (typeof GatewayAssociationState)[keyof typeof GatewayAssociationState];
4519
4768
  /**
4520
4769
  * @public
4521
4770
  * <p>The internet key exchange (IKE) version permitted for the VPN tunnel.</p>
@@ -4712,6 +4961,10 @@ export interface TunnelOption {
4712
4961
  * <p>Options for logging VPN tunnel activity.</p>
4713
4962
  */
4714
4963
  LogOptions?: VpnTunnelLogOptions;
4964
+ /**
4965
+ * <p>Status of tunnel endpoint lifecycle control feature.</p>
4966
+ */
4967
+ EnableTunnelLifecycleControl?: boolean;
4715
4968
  }
4716
4969
  /**
4717
4970
  * @public
@@ -4766,19 +5019,29 @@ export interface VpnConnectionOptions {
4766
5019
  }
4767
5020
  /**
4768
5021
  * @public
5022
+ * @enum
4769
5023
  */
4770
- export declare enum VpnStaticRouteSource {
4771
- Static = "Static"
4772
- }
5024
+ export declare const VpnStaticRouteSource: {
5025
+ readonly Static: "Static";
5026
+ };
4773
5027
  /**
4774
5028
  * @public
4775
5029
  */
4776
- export declare enum VpnState {
4777
- available = "available",
4778
- deleted = "deleted",
4779
- deleting = "deleting",
4780
- pending = "pending"
4781
- }
5030
+ export type VpnStaticRouteSource = (typeof VpnStaticRouteSource)[keyof typeof VpnStaticRouteSource];
5031
+ /**
5032
+ * @public
5033
+ * @enum
5034
+ */
5035
+ export declare const VpnState: {
5036
+ readonly available: "available";
5037
+ readonly deleted: "deleted";
5038
+ readonly deleting: "deleting";
5039
+ readonly pending: "pending";
5040
+ };
5041
+ /**
5042
+ * @public
5043
+ */
5044
+ export type VpnState = (typeof VpnState)[keyof typeof VpnState];
4782
5045
  /**
4783
5046
  * @public
4784
5047
  * <p>Describes a static route for a VPN connection.</p>
@@ -4799,11 +5062,16 @@ export interface VpnStaticRoute {
4799
5062
  }
4800
5063
  /**
4801
5064
  * @public
5065
+ * @enum
4802
5066
  */
4803
- export declare enum TelemetryStatus {
4804
- DOWN = "DOWN",
4805
- UP = "UP"
4806
- }
5067
+ export declare const TelemetryStatus: {
5068
+ readonly DOWN: "DOWN";
5069
+ readonly UP: "UP";
5070
+ };
5071
+ /**
5072
+ * @public
5073
+ */
5074
+ export type TelemetryStatus = (typeof TelemetryStatus)[keyof typeof TelemetryStatus];
4807
5075
  /**
4808
5076
  * @public
4809
5077
  * <p>Describes telemetry for a VPN tunnel.</p>
@@ -5223,16 +5491,21 @@ export interface DeleteFleetsRequest {
5223
5491
  }
5224
5492
  /**
5225
5493
  * @public
5494
+ * @enum
5226
5495
  */
5227
- export declare enum FleetStateCode {
5228
- ACTIVE = "active",
5229
- DELETED = "deleted",
5230
- DELETED_RUNNING = "deleted_running",
5231
- DELETED_TERMINATING_INSTANCES = "deleted_terminating",
5232
- FAILED = "failed",
5233
- MODIFYING = "modifying",
5234
- SUBMITTED = "submitted"
5235
- }
5496
+ export declare const FleetStateCode: {
5497
+ readonly ACTIVE: "active";
5498
+ readonly DELETED: "deleted";
5499
+ readonly DELETED_RUNNING: "deleted_running";
5500
+ readonly DELETED_TERMINATING_INSTANCES: "deleted_terminating";
5501
+ readonly FAILED: "failed";
5502
+ readonly MODIFYING: "modifying";
5503
+ readonly SUBMITTED: "submitted";
5504
+ };
5505
+ /**
5506
+ * @public
5507
+ */
5508
+ export type FleetStateCode = (typeof FleetStateCode)[keyof typeof FleetStateCode];
5236
5509
  /**
5237
5510
  * @public
5238
5511
  * <p>Describes an EC2 Fleet that was successfully deleted.</p>
@@ -5253,13 +5526,18 @@ export interface DeleteFleetSuccessItem {
5253
5526
  }
5254
5527
  /**
5255
5528
  * @public
5529
+ * @enum
5256
5530
  */
5257
- export declare enum DeleteFleetErrorCode {
5258
- FLEET_ID_DOES_NOT_EXIST = "fleetIdDoesNotExist",
5259
- FLEET_ID_MALFORMED = "fleetIdMalformed",
5260
- FLEET_NOT_IN_DELETABLE_STATE = "fleetNotInDeletableState",
5261
- UNEXPECTED_ERROR = "unexpectedError"
5262
- }
5531
+ export declare const DeleteFleetErrorCode: {
5532
+ readonly FLEET_ID_DOES_NOT_EXIST: "fleetIdDoesNotExist";
5533
+ readonly FLEET_ID_MALFORMED: "fleetIdMalformed";
5534
+ readonly FLEET_NOT_IN_DELETABLE_STATE: "fleetNotInDeletableState";
5535
+ readonly UNEXPECTED_ERROR: "unexpectedError";
5536
+ };
5537
+ /**
5538
+ * @public
5539
+ */
5540
+ export type DeleteFleetErrorCode = (typeof DeleteFleetErrorCode)[keyof typeof DeleteFleetErrorCode];
5263
5541
  /**
5264
5542
  * @public
5265
5543
  * <p>Describes an EC2 Fleet error.</p>
@@ -5629,15 +5907,20 @@ export interface DeleteLaunchTemplateVersionsResponseSuccessItem {
5629
5907
  }
5630
5908
  /**
5631
5909
  * @public
5910
+ * @enum
5632
5911
  */
5633
- export declare enum LaunchTemplateErrorCode {
5634
- LAUNCH_TEMPLATE_ID_DOES_NOT_EXIST = "launchTemplateIdDoesNotExist",
5635
- LAUNCH_TEMPLATE_ID_MALFORMED = "launchTemplateIdMalformed",
5636
- LAUNCH_TEMPLATE_NAME_DOES_NOT_EXIST = "launchTemplateNameDoesNotExist",
5637
- LAUNCH_TEMPLATE_NAME_MALFORMED = "launchTemplateNameMalformed",
5638
- LAUNCH_TEMPLATE_VERSION_DOES_NOT_EXIST = "launchTemplateVersionDoesNotExist",
5639
- UNEXPECTED_ERROR = "unexpectedError"
5640
- }
5912
+ export declare const LaunchTemplateErrorCode: {
5913
+ readonly LAUNCH_TEMPLATE_ID_DOES_NOT_EXIST: "launchTemplateIdDoesNotExist";
5914
+ readonly LAUNCH_TEMPLATE_ID_MALFORMED: "launchTemplateIdMalformed";
5915
+ readonly LAUNCH_TEMPLATE_NAME_DOES_NOT_EXIST: "launchTemplateNameDoesNotExist";
5916
+ readonly LAUNCH_TEMPLATE_NAME_MALFORMED: "launchTemplateNameMalformed";
5917
+ readonly LAUNCH_TEMPLATE_VERSION_DOES_NOT_EXIST: "launchTemplateVersionDoesNotExist";
5918
+ readonly UNEXPECTED_ERROR: "unexpectedError";
5919
+ };
5920
+ /**
5921
+ * @public
5922
+ */
5923
+ export type LaunchTemplateErrorCode = (typeof LaunchTemplateErrorCode)[keyof typeof LaunchTemplateErrorCode];
5641
5924
  /**
5642
5925
  * @public
5643
5926
  * <p>Describes the error that's returned when you cannot delete a launch template
@@ -6084,12 +6367,17 @@ export interface DeleteQueuedReservedInstancesRequest {
6084
6367
  }
6085
6368
  /**
6086
6369
  * @public
6370
+ * @enum
6087
6371
  */
6088
- export declare enum DeleteQueuedReservedInstancesErrorCode {
6089
- RESERVED_INSTANCES_ID_INVALID = "reserved-instances-id-invalid",
6090
- RESERVED_INSTANCES_NOT_IN_QUEUED_STATE = "reserved-instances-not-in-queued-state",
6091
- UNEXPECTED_ERROR = "unexpected-error"
6092
- }
6372
+ export declare const DeleteQueuedReservedInstancesErrorCode: {
6373
+ readonly RESERVED_INSTANCES_ID_INVALID: "reserved-instances-id-invalid";
6374
+ readonly RESERVED_INSTANCES_NOT_IN_QUEUED_STATE: "reserved-instances-not-in-queued-state";
6375
+ readonly UNEXPECTED_ERROR: "unexpected-error";
6376
+ };
6377
+ /**
6378
+ * @public
6379
+ */
6380
+ export type DeleteQueuedReservedInstancesErrorCode = (typeof DeleteQueuedReservedInstancesErrorCode)[keyof typeof DeleteQueuedReservedInstancesErrorCode];
6093
6381
  /**
6094
6382
  * @public
6095
6383
  * <p>Describes the error for a Reserved Instance whose queued purchase could not be deleted.</p>