@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
@@ -214,15 +214,20 @@ export interface PrivateDnsNameOptionsResponse {
214
214
  }
215
215
  /**
216
216
  * @public
217
+ * @enum
217
218
  */
218
- export declare enum InstanceStateName {
219
- pending = "pending",
220
- running = "running",
221
- shutting_down = "shutting-down",
222
- stopped = "stopped",
223
- stopping = "stopping",
224
- terminated = "terminated"
225
- }
219
+ export declare const InstanceStateName: {
220
+ readonly pending: "pending";
221
+ readonly running: "running";
222
+ readonly shutting_down: "shutting-down";
223
+ readonly stopped: "stopped";
224
+ readonly stopping: "stopping";
225
+ readonly terminated: "terminated";
226
+ };
227
+ /**
228
+ * @public
229
+ */
230
+ export type InstanceStateName = (typeof InstanceStateName)[keyof typeof InstanceStateName];
226
231
  /**
227
232
  * @public
228
233
  * <p>Describes the current state of an instance.</p>
@@ -709,14 +714,19 @@ export interface DescribeInstanceStatusRequest {
709
714
  }
710
715
  /**
711
716
  * @public
717
+ * @enum
712
718
  */
713
- export declare enum EventCode {
714
- instance_reboot = "instance-reboot",
715
- instance_retirement = "instance-retirement",
716
- instance_stop = "instance-stop",
717
- system_maintenance = "system-maintenance",
718
- system_reboot = "system-reboot"
719
- }
719
+ export declare const EventCode: {
720
+ readonly instance_reboot: "instance-reboot";
721
+ readonly instance_retirement: "instance-retirement";
722
+ readonly instance_stop: "instance-stop";
723
+ readonly system_maintenance: "system-maintenance";
724
+ readonly system_reboot: "system-reboot";
725
+ };
726
+ /**
727
+ * @public
728
+ */
729
+ export type EventCode = (typeof EventCode)[keyof typeof EventCode];
720
730
  /**
721
731
  * @public
722
732
  * <p>Describes a scheduled event for an instance.</p>
@@ -752,19 +762,29 @@ export interface InstanceStatusEvent {
752
762
  }
753
763
  /**
754
764
  * @public
765
+ * @enum
755
766
  */
756
- export declare enum StatusName {
757
- reachability = "reachability"
758
- }
767
+ export declare const StatusName: {
768
+ readonly reachability: "reachability";
769
+ };
759
770
  /**
760
771
  * @public
761
772
  */
762
- export declare enum StatusType {
763
- failed = "failed",
764
- initializing = "initializing",
765
- insufficient_data = "insufficient-data",
766
- passed = "passed"
767
- }
773
+ export type StatusName = (typeof StatusName)[keyof typeof StatusName];
774
+ /**
775
+ * @public
776
+ * @enum
777
+ */
778
+ export declare const StatusType: {
779
+ readonly failed: "failed";
780
+ readonly initializing: "initializing";
781
+ readonly insufficient_data: "insufficient-data";
782
+ readonly passed: "passed";
783
+ };
784
+ /**
785
+ * @public
786
+ */
787
+ export type StatusType = (typeof StatusType)[keyof typeof StatusType];
768
788
  /**
769
789
  * @public
770
790
  * <p>Describes the instance status.</p>
@@ -786,14 +806,19 @@ export interface InstanceStatusDetails {
786
806
  }
787
807
  /**
788
808
  * @public
809
+ * @enum
789
810
  */
790
- export declare enum SummaryStatus {
791
- impaired = "impaired",
792
- initializing = "initializing",
793
- insufficient_data = "insufficient-data",
794
- not_applicable = "not-applicable",
795
- ok = "ok"
796
- }
811
+ export declare const SummaryStatus: {
812
+ readonly impaired: "impaired";
813
+ readonly initializing: "initializing";
814
+ readonly insufficient_data: "insufficient-data";
815
+ readonly not_applicable: "not-applicable";
816
+ readonly ok: "ok";
817
+ };
818
+ /**
819
+ * @public
820
+ */
821
+ export type SummaryStatus = (typeof SummaryStatus)[keyof typeof SummaryStatus];
797
822
  /**
798
823
  * @public
799
824
  * <p>Describes the status of an instance.</p>
@@ -861,12 +886,17 @@ export interface DescribeInstanceStatusResult {
861
886
  }
862
887
  /**
863
888
  * @public
889
+ * @enum
864
890
  */
865
- export declare enum LocationType {
866
- availability_zone = "availability-zone",
867
- availability_zone_id = "availability-zone-id",
868
- region = "region"
869
- }
891
+ export declare const LocationType: {
892
+ readonly availability_zone: "availability-zone";
893
+ readonly availability_zone_id: "availability-zone-id";
894
+ readonly region: "region";
895
+ };
896
+ /**
897
+ * @public
898
+ */
899
+ export type LocationType = (typeof LocationType)[keyof typeof LocationType];
870
900
  /**
871
901
  * @public
872
902
  */
@@ -1225,27 +1255,42 @@ export interface EbsOptimizedInfo {
1225
1255
  }
1226
1256
  /**
1227
1257
  * @public
1258
+ * @enum
1228
1259
  */
1229
- export declare enum EbsOptimizedSupport {
1230
- default = "default",
1231
- supported = "supported",
1232
- unsupported = "unsupported"
1233
- }
1260
+ export declare const EbsOptimizedSupport: {
1261
+ readonly default: "default";
1262
+ readonly supported: "supported";
1263
+ readonly unsupported: "unsupported";
1264
+ };
1234
1265
  /**
1235
1266
  * @public
1236
1267
  */
1237
- export declare enum EbsEncryptionSupport {
1238
- supported = "supported",
1239
- unsupported = "unsupported"
1240
- }
1268
+ export type EbsOptimizedSupport = (typeof EbsOptimizedSupport)[keyof typeof EbsOptimizedSupport];
1241
1269
  /**
1242
1270
  * @public
1271
+ * @enum
1243
1272
  */
1244
- export declare enum EbsNvmeSupport {
1245
- REQUIRED = "required",
1246
- SUPPORTED = "supported",
1247
- UNSUPPORTED = "unsupported"
1248
- }
1273
+ export declare const EbsEncryptionSupport: {
1274
+ readonly supported: "supported";
1275
+ readonly unsupported: "unsupported";
1276
+ };
1277
+ /**
1278
+ * @public
1279
+ */
1280
+ export type EbsEncryptionSupport = (typeof EbsEncryptionSupport)[keyof typeof EbsEncryptionSupport];
1281
+ /**
1282
+ * @public
1283
+ * @enum
1284
+ */
1285
+ export declare const EbsNvmeSupport: {
1286
+ readonly REQUIRED: "required";
1287
+ readonly SUPPORTED: "supported";
1288
+ readonly UNSUPPORTED: "unsupported";
1289
+ };
1290
+ /**
1291
+ * @public
1292
+ */
1293
+ export type EbsNvmeSupport = (typeof EbsNvmeSupport)[keyof typeof EbsNvmeSupport];
1249
1294
  /**
1250
1295
  * @public
1251
1296
  * <p>Describes the Amazon EBS features supported by the instance type.</p>
@@ -1363,11 +1408,16 @@ export interface GpuInfo {
1363
1408
  }
1364
1409
  /**
1365
1410
  * @public
1411
+ * @enum
1366
1412
  */
1367
- export declare enum InstanceTypeHypervisor {
1368
- NITRO = "nitro",
1369
- XEN = "xen"
1370
- }
1413
+ export declare const InstanceTypeHypervisor: {
1414
+ readonly NITRO: "nitro";
1415
+ readonly XEN: "xen";
1416
+ };
1417
+ /**
1418
+ * @public
1419
+ */
1420
+ export type InstanceTypeHypervisor = (typeof InstanceTypeHypervisor)[keyof typeof InstanceTypeHypervisor];
1371
1421
  /**
1372
1422
  * @public
1373
1423
  * <p>Describes the Inference accelerators for the instance type.</p>
@@ -1398,11 +1448,16 @@ export interface InferenceAcceleratorInfo {
1398
1448
  }
1399
1449
  /**
1400
1450
  * @public
1451
+ * @enum
1401
1452
  */
1402
- export declare enum DiskType {
1403
- hdd = "hdd",
1404
- ssd = "ssd"
1405
- }
1453
+ export declare const DiskType: {
1454
+ readonly hdd: "hdd";
1455
+ readonly ssd: "ssd";
1456
+ };
1457
+ /**
1458
+ * @public
1459
+ */
1460
+ export type DiskType = (typeof DiskType)[keyof typeof DiskType];
1406
1461
  /**
1407
1462
  * @public
1408
1463
  * <p>Describes a disk.</p>
@@ -1423,19 +1478,29 @@ export interface DiskInfo {
1423
1478
  }
1424
1479
  /**
1425
1480
  * @public
1481
+ * @enum
1426
1482
  */
1427
- export declare enum InstanceStorageEncryptionSupport {
1428
- required = "required",
1429
- unsupported = "unsupported"
1430
- }
1483
+ export declare const InstanceStorageEncryptionSupport: {
1484
+ readonly required: "required";
1485
+ readonly unsupported: "unsupported";
1486
+ };
1431
1487
  /**
1432
1488
  * @public
1433
1489
  */
1434
- export declare enum EphemeralNvmeSupport {
1435
- REQUIRED = "required",
1436
- SUPPORTED = "supported",
1437
- UNSUPPORTED = "unsupported"
1438
- }
1490
+ export type InstanceStorageEncryptionSupport = (typeof InstanceStorageEncryptionSupport)[keyof typeof InstanceStorageEncryptionSupport];
1491
+ /**
1492
+ * @public
1493
+ * @enum
1494
+ */
1495
+ export declare const EphemeralNvmeSupport: {
1496
+ readonly REQUIRED: "required";
1497
+ readonly SUPPORTED: "supported";
1498
+ readonly UNSUPPORTED: "unsupported";
1499
+ };
1500
+ /**
1501
+ * @public
1502
+ */
1503
+ export type EphemeralNvmeSupport = (typeof EphemeralNvmeSupport)[keyof typeof EphemeralNvmeSupport];
1439
1504
  /**
1440
1505
  * @public
1441
1506
  * <p>Describes the instance store features that are supported by the instance type.</p>
@@ -1480,12 +1545,17 @@ export interface EfaInfo {
1480
1545
  }
1481
1546
  /**
1482
1547
  * @public
1548
+ * @enum
1483
1549
  */
1484
- export declare enum EnaSupport {
1485
- required = "required",
1486
- supported = "supported",
1487
- unsupported = "unsupported"
1488
- }
1550
+ export declare const EnaSupport: {
1551
+ readonly required: "required";
1552
+ readonly supported: "supported";
1553
+ readonly unsupported: "unsupported";
1554
+ };
1555
+ /**
1556
+ * @public
1557
+ */
1558
+ export type EnaSupport = (typeof EnaSupport)[keyof typeof EnaSupport];
1489
1559
  /**
1490
1560
  * @public
1491
1561
  * <p>Describes the network card support of the instance type.</p>
@@ -1566,12 +1636,17 @@ export interface NetworkInfo {
1566
1636
  }
1567
1637
  /**
1568
1638
  * @public
1639
+ * @enum
1569
1640
  */
1570
- export declare enum PlacementGroupStrategy {
1571
- cluster = "cluster",
1572
- partition = "partition",
1573
- spread = "spread"
1574
- }
1641
+ export declare const PlacementGroupStrategy: {
1642
+ readonly cluster: "cluster";
1643
+ readonly partition: "partition";
1644
+ readonly spread: "spread";
1645
+ };
1646
+ /**
1647
+ * @public
1648
+ */
1649
+ export type PlacementGroupStrategy = (typeof PlacementGroupStrategy)[keyof typeof PlacementGroupStrategy];
1575
1650
  /**
1576
1651
  * @public
1577
1652
  * <p>Describes the placement group support of the instance type.</p>
@@ -1584,14 +1659,19 @@ export interface PlacementGroupInfo {
1584
1659
  }
1585
1660
  /**
1586
1661
  * @public
1662
+ * @enum
1587
1663
  */
1588
- export declare enum ArchitectureType {
1589
- arm64 = "arm64",
1590
- arm64_mac = "arm64_mac",
1591
- i386 = "i386",
1592
- x86_64 = "x86_64",
1593
- x86_64_mac = "x86_64_mac"
1594
- }
1664
+ export declare const ArchitectureType: {
1665
+ readonly arm64: "arm64";
1666
+ readonly arm64_mac: "arm64_mac";
1667
+ readonly i386: "i386";
1668
+ readonly x86_64: "x86_64";
1669
+ readonly x86_64_mac: "x86_64_mac";
1670
+ };
1671
+ /**
1672
+ * @public
1673
+ */
1674
+ export type ArchitectureType = (typeof ArchitectureType)[keyof typeof ArchitectureType];
1595
1675
  /**
1596
1676
  * @public
1597
1677
  * <p>Describes the processor used by the instance type.</p>
@@ -1608,25 +1688,40 @@ export interface ProcessorInfo {
1608
1688
  }
1609
1689
  /**
1610
1690
  * @public
1691
+ * @enum
1611
1692
  */
1612
- export declare enum BootModeType {
1613
- legacy_bios = "legacy-bios",
1614
- uefi = "uefi"
1615
- }
1693
+ export declare const BootModeType: {
1694
+ readonly legacy_bios: "legacy-bios";
1695
+ readonly uefi: "uefi";
1696
+ };
1616
1697
  /**
1617
1698
  * @public
1618
1699
  */
1619
- export declare enum RootDeviceType {
1620
- ebs = "ebs",
1621
- instance_store = "instance-store"
1622
- }
1700
+ export type BootModeType = (typeof BootModeType)[keyof typeof BootModeType];
1623
1701
  /**
1624
1702
  * @public
1703
+ * @enum
1625
1704
  */
1626
- export declare enum UsageClassType {
1627
- on_demand = "on-demand",
1628
- spot = "spot"
1629
- }
1705
+ export declare const RootDeviceType: {
1706
+ readonly ebs: "ebs";
1707
+ readonly instance_store: "instance-store";
1708
+ };
1709
+ /**
1710
+ * @public
1711
+ */
1712
+ export type RootDeviceType = (typeof RootDeviceType)[keyof typeof RootDeviceType];
1713
+ /**
1714
+ * @public
1715
+ * @enum
1716
+ */
1717
+ export declare const UsageClassType: {
1718
+ readonly on_demand: "on-demand";
1719
+ readonly spot: "spot";
1720
+ };
1721
+ /**
1722
+ * @public
1723
+ */
1724
+ export type UsageClassType = (typeof UsageClassType)[keyof typeof UsageClassType];
1630
1725
  /**
1631
1726
  * @public
1632
1727
  * <p>Describes the vCPU configurations for the instance type.</p>
@@ -3067,11 +3162,16 @@ export interface DescribeMovingAddressesRequest {
3067
3162
  }
3068
3163
  /**
3069
3164
  * @public
3165
+ * @enum
3070
3166
  */
3071
- export declare enum MoveStatus {
3072
- movingToVpc = "movingToVpc",
3073
- restoringToClassic = "restoringToClassic"
3074
- }
3167
+ export declare const MoveStatus: {
3168
+ readonly movingToVpc: "movingToVpc";
3169
+ readonly restoringToClassic: "restoringToClassic";
3170
+ };
3171
+ /**
3172
+ * @public
3173
+ */
3174
+ export type MoveStatus = (typeof MoveStatus)[keyof typeof MoveStatus];
3075
3175
  /**
3076
3176
  * @public
3077
3177
  * <p>Describes the status of a moving Elastic IP address.</p>
@@ -3338,20 +3438,30 @@ export interface DescribeNetworkInsightsAccessScopeAnalysesRequest {
3338
3438
  }
3339
3439
  /**
3340
3440
  * @public
3441
+ * @enum
3341
3442
  */
3342
- export declare enum FindingsFound {
3343
- false = "false",
3344
- true = "true",
3345
- unknown = "unknown"
3346
- }
3443
+ export declare const FindingsFound: {
3444
+ readonly false: "false";
3445
+ readonly true: "true";
3446
+ readonly unknown: "unknown";
3447
+ };
3347
3448
  /**
3348
3449
  * @public
3349
3450
  */
3350
- export declare enum AnalysisStatus {
3351
- failed = "failed",
3352
- running = "running",
3353
- succeeded = "succeeded"
3354
- }
3451
+ export type FindingsFound = (typeof FindingsFound)[keyof typeof FindingsFound];
3452
+ /**
3453
+ * @public
3454
+ * @enum
3455
+ */
3456
+ export declare const AnalysisStatus: {
3457
+ readonly failed: "failed";
3458
+ readonly running: "running";
3459
+ readonly succeeded: "succeeded";
3460
+ };
3461
+ /**
3462
+ * @public
3463
+ */
3464
+ export type AnalysisStatus = (typeof AnalysisStatus)[keyof typeof AnalysisStatus];
3355
3465
  /**
3356
3466
  * @public
3357
3467
  * <p>Describes a Network Access Scope analysis.</p>
@@ -3665,13 +3775,18 @@ export interface DescribeNetworkInsightsPathsResult {
3665
3775
  }
3666
3776
  /**
3667
3777
  * @public
3778
+ * @enum
3668
3779
  */
3669
- export declare enum NetworkInterfaceAttribute {
3670
- attachment = "attachment",
3671
- description = "description",
3672
- groupSet = "groupSet",
3673
- sourceDestCheck = "sourceDestCheck"
3674
- }
3780
+ export declare const NetworkInterfaceAttribute: {
3781
+ readonly attachment: "attachment";
3782
+ readonly description: "description";
3783
+ readonly groupSet: "groupSet";
3784
+ readonly sourceDestCheck: "sourceDestCheck";
3785
+ };
3786
+ /**
3787
+ * @public
3788
+ */
3789
+ export type NetworkInterfaceAttribute = (typeof NetworkInterfaceAttribute)[keyof typeof NetworkInterfaceAttribute];
3675
3790
  /**
3676
3791
  * @public
3677
3792
  * <p>Contains the parameters for DescribeNetworkInterfaceAttribute.</p>
@@ -4421,22 +4536,32 @@ export interface DescribeReplaceRootVolumeTasksResult {
4421
4536
  }
4422
4537
  /**
4423
4538
  * @public
4539
+ * @enum
4424
4540
  */
4425
- export declare enum OfferingClassType {
4426
- CONVERTIBLE = "convertible",
4427
- STANDARD = "standard"
4428
- }
4541
+ export declare const OfferingClassType: {
4542
+ readonly CONVERTIBLE: "convertible";
4543
+ readonly STANDARD: "standard";
4544
+ };
4429
4545
  /**
4430
4546
  * @public
4431
4547
  */
4432
- export declare enum OfferingTypeValues {
4433
- All_Upfront = "All Upfront",
4434
- Heavy_Utilization = "Heavy Utilization",
4435
- Light_Utilization = "Light Utilization",
4436
- Medium_Utilization = "Medium Utilization",
4437
- No_Upfront = "No Upfront",
4438
- Partial_Upfront = "Partial Upfront"
4439
- }
4548
+ export type OfferingClassType = (typeof OfferingClassType)[keyof typeof OfferingClassType];
4549
+ /**
4550
+ * @public
4551
+ * @enum
4552
+ */
4553
+ export declare const OfferingTypeValues: {
4554
+ readonly All_Upfront: "All Upfront";
4555
+ readonly Heavy_Utilization: "Heavy Utilization";
4556
+ readonly Light_Utilization: "Light Utilization";
4557
+ readonly Medium_Utilization: "Medium Utilization";
4558
+ readonly No_Upfront: "No Upfront";
4559
+ readonly Partial_Upfront: "Partial Upfront";
4560
+ };
4561
+ /**
4562
+ * @public
4563
+ */
4564
+ export type OfferingTypeValues = (typeof OfferingTypeValues)[keyof typeof OfferingTypeValues];
4440
4565
  /**
4441
4566
  * @public
4442
4567
  * <p>Contains the parameters for DescribeReservedInstances.</p>
@@ -4536,19 +4661,29 @@ export interface DescribeReservedInstancesRequest {
4536
4661
  }
4537
4662
  /**
4538
4663
  * @public
4664
+ * @enum
4539
4665
  */
4540
- export declare enum RIProductDescription {
4541
- Linux_UNIX = "Linux/UNIX",
4542
- Linux_UNIX_Amazon_VPC_ = "Linux/UNIX (Amazon VPC)",
4543
- Windows = "Windows",
4544
- Windows_Amazon_VPC_ = "Windows (Amazon VPC)"
4545
- }
4666
+ export declare const RIProductDescription: {
4667
+ readonly Linux_UNIX: "Linux/UNIX";
4668
+ readonly Linux_UNIX_Amazon_VPC_: "Linux/UNIX (Amazon VPC)";
4669
+ readonly Windows: "Windows";
4670
+ readonly Windows_Amazon_VPC_: "Windows (Amazon VPC)";
4671
+ };
4546
4672
  /**
4547
4673
  * @public
4548
4674
  */
4549
- export declare enum RecurringChargeFrequency {
4550
- Hourly = "Hourly"
4551
- }
4675
+ export type RIProductDescription = (typeof RIProductDescription)[keyof typeof RIProductDescription];
4676
+ /**
4677
+ * @public
4678
+ * @enum
4679
+ */
4680
+ export declare const RecurringChargeFrequency: {
4681
+ readonly Hourly: "Hourly";
4682
+ };
4683
+ /**
4684
+ * @public
4685
+ */
4686
+ export type RecurringChargeFrequency = (typeof RecurringChargeFrequency)[keyof typeof RecurringChargeFrequency];
4552
4687
  /**
4553
4688
  * @public
4554
4689
  * <p>Describes a recurring charge.</p>
@@ -4565,22 +4700,32 @@ export interface RecurringCharge {
4565
4700
  }
4566
4701
  /**
4567
4702
  * @public
4703
+ * @enum
4568
4704
  */
4569
- export declare enum Scope {
4570
- AVAILABILITY_ZONE = "Availability Zone",
4571
- REGIONAL = "Region"
4572
- }
4705
+ export declare const Scope: {
4706
+ readonly AVAILABILITY_ZONE: "Availability Zone";
4707
+ readonly REGIONAL: "Region";
4708
+ };
4573
4709
  /**
4574
4710
  * @public
4575
4711
  */
4576
- export declare enum ReservedInstanceState {
4577
- active = "active",
4578
- payment_failed = "payment-failed",
4579
- payment_pending = "payment-pending",
4580
- queued = "queued",
4581
- queued_deleted = "queued-deleted",
4582
- retired = "retired"
4583
- }
4712
+ export type Scope = (typeof Scope)[keyof typeof Scope];
4713
+ /**
4714
+ * @public
4715
+ * @enum
4716
+ */
4717
+ export declare const ReservedInstanceState: {
4718
+ readonly active: "active";
4719
+ readonly payment_failed: "payment-failed";
4720
+ readonly payment_pending: "payment-pending";
4721
+ readonly queued: "queued";
4722
+ readonly queued_deleted: "queued-deleted";
4723
+ readonly retired: "retired";
4724
+ };
4725
+ /**
4726
+ * @public
4727
+ */
4728
+ export type ReservedInstanceState = (typeof ReservedInstanceState)[keyof typeof ReservedInstanceState];
4584
4729
  /**
4585
4730
  * @public
4586
4731
  * <p>Describes a Reserved Instance.</p>
@@ -5959,11 +6104,16 @@ export interface DescribeSecurityGroupsResult {
5959
6104
  }
5960
6105
  /**
5961
6106
  * @public
6107
+ * @enum
5962
6108
  */
5963
- export declare enum SnapshotAttributeName {
5964
- createVolumePermission = "createVolumePermission",
5965
- productCodes = "productCodes"
5966
- }
6109
+ export declare const SnapshotAttributeName: {
6110
+ readonly createVolumePermission: "createVolumePermission";
6111
+ readonly productCodes: "productCodes";
6112
+ };
6113
+ /**
6114
+ * @public
6115
+ */
6116
+ export type SnapshotAttributeName = (typeof SnapshotAttributeName)[keyof typeof SnapshotAttributeName];
5967
6117
  /**
5968
6118
  * @public
5969
6119
  */
@@ -6179,18 +6329,23 @@ export interface DescribeSnapshotTierStatusRequest {
6179
6329
  }
6180
6330
  /**
6181
6331
  * @public
6332
+ * @enum
6182
6333
  */
6183
- export declare enum TieringOperationStatus {
6184
- archival_completed = "archival-completed",
6185
- archival_failed = "archival-failed",
6186
- archival_in_progress = "archival-in-progress",
6187
- permanent_restore_completed = "permanent-restore-completed",
6188
- permanent_restore_failed = "permanent-restore-failed",
6189
- permanent_restore_in_progress = "permanent-restore-in-progress",
6190
- temporary_restore_completed = "temporary-restore-completed",
6191
- temporary_restore_failed = "temporary-restore-failed",
6192
- temporary_restore_in_progress = "temporary-restore-in-progress"
6193
- }
6334
+ export declare const TieringOperationStatus: {
6335
+ readonly archival_completed: "archival-completed";
6336
+ readonly archival_failed: "archival-failed";
6337
+ readonly archival_in_progress: "archival-in-progress";
6338
+ readonly permanent_restore_completed: "permanent-restore-completed";
6339
+ readonly permanent_restore_failed: "permanent-restore-failed";
6340
+ readonly permanent_restore_in_progress: "permanent-restore-in-progress";
6341
+ readonly temporary_restore_completed: "temporary-restore-completed";
6342
+ readonly temporary_restore_failed: "temporary-restore-failed";
6343
+ readonly temporary_restore_in_progress: "temporary-restore-in-progress";
6344
+ };
6345
+ /**
6346
+ * @public
6347
+ */
6348
+ export type TieringOperationStatus = (typeof TieringOperationStatus)[keyof typeof TieringOperationStatus];
6194
6349
  /**
6195
6350
  * @public
6196
6351
  * <p>Provides information about a snapshot's storage tier.</p>
@@ -6336,13 +6491,18 @@ export interface DescribeSpotFleetInstancesResponse {
6336
6491
  }
6337
6492
  /**
6338
6493
  * @public
6494
+ * @enum
6339
6495
  */
6340
- export declare enum EventType {
6341
- BATCH_CHANGE = "fleetRequestChange",
6342
- ERROR = "error",
6343
- INFORMATION = "information",
6344
- INSTANCE_CHANGE = "instanceChange"
6345
- }
6496
+ export declare const EventType: {
6497
+ readonly BATCH_CHANGE: "fleetRequestChange";
6498
+ readonly ERROR: "error";
6499
+ readonly INFORMATION: "information";
6500
+ readonly INSTANCE_CHANGE: "instanceChange";
6501
+ };
6502
+ /**
6503
+ * @public
6504
+ */
6505
+ export type EventType = (typeof EventType)[keyof typeof EventType];
6346
6506
  /**
6347
6507
  * @public
6348
6508
  * <p>Contains the parameters for DescribeSpotFleetRequestHistory.</p>
@@ -6480,11 +6640,16 @@ export interface DescribeSpotFleetRequestsRequest {
6480
6640
  }
6481
6641
  /**
6482
6642
  * @public
6643
+ * @enum
6483
6644
  */
6484
- export declare enum ExcessCapacityTerminationPolicy {
6485
- DEFAULT = "default",
6486
- NO_TERMINATION = "noTermination"
6487
- }
6645
+ export declare const ExcessCapacityTerminationPolicy: {
6646
+ readonly DEFAULT: "default";
6647
+ readonly NO_TERMINATION: "noTermination";
6648
+ };
6649
+ /**
6650
+ * @public
6651
+ */
6652
+ export type ExcessCapacityTerminationPolicy = (typeof ExcessCapacityTerminationPolicy)[keyof typeof ExcessCapacityTerminationPolicy];
6488
6653
  /**
6489
6654
  * @public
6490
6655
  * <p>Describes whether monitoring is enabled.</p>
@@ -6889,18 +7054,28 @@ export interface LoadBalancersConfig {
6889
7054
  }
6890
7055
  /**
6891
7056
  * @public
7057
+ * @enum
6892
7058
  */
6893
- export declare enum OnDemandAllocationStrategy {
6894
- LOWEST_PRICE = "lowestPrice",
6895
- PRIORITIZED = "prioritized"
6896
- }
7059
+ export declare const OnDemandAllocationStrategy: {
7060
+ readonly LOWEST_PRICE: "lowestPrice";
7061
+ readonly PRIORITIZED: "prioritized";
7062
+ };
6897
7063
  /**
6898
7064
  * @public
6899
7065
  */
6900
- export declare enum ReplacementStrategy {
6901
- LAUNCH = "launch",
6902
- LAUNCH_BEFORE_TERMINATE = "launch-before-terminate"
6903
- }
7066
+ export type OnDemandAllocationStrategy = (typeof OnDemandAllocationStrategy)[keyof typeof OnDemandAllocationStrategy];
7067
+ /**
7068
+ * @public
7069
+ * @enum
7070
+ */
7071
+ export declare const ReplacementStrategy: {
7072
+ readonly LAUNCH: "launch";
7073
+ readonly LAUNCH_BEFORE_TERMINATE: "launch-before-terminate";
7074
+ };
7075
+ /**
7076
+ * @public
7077
+ */
7078
+ export type ReplacementStrategy = (typeof ReplacementStrategy)[keyof typeof ReplacementStrategy];
6904
7079
  /**
6905
7080
  * @public
6906
7081
  * <p>The Spot Instance replacement strategy to use when Amazon EC2 emits a signal that your
@@ -7542,14 +7717,19 @@ export interface LaunchSpecification {
7542
7717
  }
7543
7718
  /**
7544
7719
  * @public
7720
+ * @enum
7545
7721
  */
7546
- export declare enum SpotInstanceState {
7547
- active = "active",
7548
- cancelled = "cancelled",
7549
- closed = "closed",
7550
- failed = "failed",
7551
- open = "open"
7552
- }
7722
+ export declare const SpotInstanceState: {
7723
+ readonly active: "active";
7724
+ readonly cancelled: "cancelled";
7725
+ readonly closed: "closed";
7726
+ readonly failed: "failed";
7727
+ readonly open: "open";
7728
+ };
7729
+ /**
7730
+ * @public
7731
+ */
7732
+ export type SpotInstanceState = (typeof SpotInstanceState)[keyof typeof SpotInstanceState];
7553
7733
  /**
7554
7734
  * @public
7555
7735
  * <p>Describes the status of a Spot Instance request.</p>
@@ -9337,11 +9517,16 @@ export interface DescribeVerifiedAccessInstanceLoggingConfigurationsRequest {
9337
9517
  }
9338
9518
  /**
9339
9519
  * @public
9520
+ * @enum
9340
9521
  */
9341
- export declare enum VerifiedAccessLogDeliveryStatusCode {
9342
- FAILED = "failed",
9343
- SUCCESS = "success"
9344
- }
9522
+ export declare const VerifiedAccessLogDeliveryStatusCode: {
9523
+ readonly FAILED: "failed";
9524
+ readonly SUCCESS: "success";
9525
+ };
9526
+ /**
9527
+ * @public
9528
+ */
9529
+ export type VerifiedAccessLogDeliveryStatusCode = (typeof VerifiedAccessLogDeliveryStatusCode)[keyof typeof VerifiedAccessLogDeliveryStatusCode];
9345
9530
  /**
9346
9531
  * @public
9347
9532
  * <p>Describes a log delivery status.</p>
@@ -9547,11 +9732,16 @@ export interface DescribeVerifiedAccessTrustProvidersResult {
9547
9732
  }
9548
9733
  /**
9549
9734
  * @public
9735
+ * @enum
9550
9736
  */
9551
- export declare enum VolumeAttributeName {
9552
- autoEnableIO = "autoEnableIO",
9553
- productCodes = "productCodes"
9554
- }
9737
+ export declare const VolumeAttributeName: {
9738
+ readonly autoEnableIO: "autoEnableIO";
9739
+ readonly productCodes: "productCodes";
9740
+ };
9741
+ /**
9742
+ * @public
9743
+ */
9744
+ export type VolumeAttributeName = (typeof VolumeAttributeName)[keyof typeof VolumeAttributeName];
9555
9745
  /**
9556
9746
  * @public
9557
9747
  */