@aws-sdk/client-ec2 3.171.0 → 3.172.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 (48) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/commands/CreateTrafficMirrorFilterRuleCommand.js +2 -1
  3. package/dist-cjs/commands/DescribeAggregateIdFormatCommand.js +1 -2
  4. package/dist-cjs/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +1 -2
  5. package/dist-cjs/commands/MonitorInstancesCommand.js +2 -1
  6. package/dist-cjs/models/models_0.js +970 -19
  7. package/dist-cjs/models/models_1.js +242 -10
  8. package/dist-cjs/models/models_2.js +144 -10
  9. package/dist-cjs/models/models_3.js +271 -10
  10. package/dist-cjs/models/models_4.js +98 -10
  11. package/dist-cjs/models/models_5.js +54 -10
  12. package/dist-cjs/models/models_6.js +38 -3
  13. package/dist-cjs/protocols/Aws_ec2.js +61 -0
  14. package/dist-es/commands/CreateTrafficMirrorFilterRuleCommand.js +2 -1
  15. package/dist-es/commands/DescribeAggregateIdFormatCommand.js +1 -2
  16. package/dist-es/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +1 -2
  17. package/dist-es/commands/MonitorInstancesCommand.js +2 -1
  18. package/dist-es/models/models_0.js +961 -10
  19. package/dist-es/models/models_1.js +233 -1
  20. package/dist-es/models/models_2.js +135 -1
  21. package/dist-es/models/models_3.js +262 -1
  22. package/dist-es/models/models_4.js +89 -1
  23. package/dist-es/models/models_5.js +45 -1
  24. package/dist-es/models/models_6.js +31 -0
  25. package/dist-es/protocols/Aws_ec2.js +61 -0
  26. package/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +2 -1
  27. package/dist-types/commands/DescribeAggregateIdFormatCommand.d.ts +1 -2
  28. package/dist-types/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +1 -2
  29. package/dist-types/commands/MonitorInstancesCommand.d.ts +2 -1
  30. package/dist-types/models/models_0.d.ts +950 -79
  31. package/dist-types/models/models_1.d.ts +222 -51
  32. package/dist-types/models/models_2.d.ts +126 -36
  33. package/dist-types/models/models_3.d.ts +235 -106
  34. package/dist-types/models/models_4.d.ts +145 -30
  35. package/dist-types/models/models_5.d.ts +59 -20
  36. package/dist-types/models/models_6.d.ts +35 -5
  37. package/dist-types/ts3.4/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +2 -4
  38. package/dist-types/ts3.4/commands/DescribeAggregateIdFormatCommand.d.ts +4 -2
  39. package/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +4 -2
  40. package/dist-types/ts3.4/commands/MonitorInstancesCommand.d.ts +2 -4
  41. package/dist-types/ts3.4/models/models_0.d.ts +925 -834
  42. package/dist-types/ts3.4/models/models_1.d.ts +204 -130
  43. package/dist-types/ts3.4/models/models_2.d.ts +119 -64
  44. package/dist-types/ts3.4/models/models_3.d.ts +228 -153
  45. package/dist-types/ts3.4/models/models_4.d.ts +86 -57
  46. package/dist-types/ts3.4/models/models_5.d.ts +46 -30
  47. package/dist-types/ts3.4/models/models_6.d.ts +31 -14
  48. package/package.json +1 -1
@@ -19,7 +19,6 @@ import {
19
19
  CoipPool,
20
20
  CurrencyCodeValues,
21
21
  CustomerGateway,
22
- DhcpOptions,
23
22
  FleetCapacityReservation,
24
23
  FleetCapacityReservationTenancy,
25
24
  FleetInstanceMatchCriteria,
@@ -37,6 +36,7 @@ import {
37
36
  CapacityReservationTargetResponse,
38
37
  DefaultTargetCapacityType,
39
38
  DestinationFileFormat,
39
+ DhcpOptions,
40
40
  DiskImageFormat,
41
41
  EgressOnlyInternetGateway,
42
42
  ExportTask,
@@ -76,6 +76,9 @@ import {
76
76
  FleetStateCode,
77
77
  InstanceTagNotificationAttribute,
78
78
  } from "./models_2";
79
+ export interface DescribeAggregateIdFormatRequest {
80
+ DryRun?: boolean;
81
+ }
79
82
  export interface IdFormat {
80
83
  Deadline?: Date;
81
84
  Resource?: string;
@@ -95,15 +98,17 @@ export interface DescribeAvailabilityZonesRequest {
95
98
  export interface AvailabilityZoneMessage {
96
99
  Message?: string;
97
100
  }
98
- export declare type AvailabilityZoneOptInStatus =
99
- | "not-opted-in"
100
- | "opt-in-not-required"
101
- | "opted-in";
102
- export declare type AvailabilityZoneState =
103
- | "available"
104
- | "impaired"
105
- | "information"
106
- | "unavailable";
101
+ export declare enum AvailabilityZoneOptInStatus {
102
+ not_opted_in = "not-opted-in",
103
+ opt_in_not_required = "opt-in-not-required",
104
+ opted_in = "opted-in",
105
+ }
106
+ export declare enum AvailabilityZoneState {
107
+ available = "available",
108
+ impaired = "impaired",
109
+ information = "information",
110
+ unavailable = "unavailable",
111
+ }
107
112
  export interface AvailabilityZone {
108
113
  State?: AvailabilityZoneState | string;
109
114
  OptInStatus?: AvailabilityZoneOptInStatus | string;
@@ -227,11 +232,12 @@ export interface DescribeClientVpnConnectionsRequest {
227
232
  MaxResults?: number;
228
233
  DryRun?: boolean;
229
234
  }
230
- export declare type ClientVpnConnectionStatusCode =
231
- | "active"
232
- | "failed-to-terminate"
233
- | "terminated"
234
- | "terminating";
235
+ export declare enum ClientVpnConnectionStatusCode {
236
+ active = "active",
237
+ failed_to_terminate = "failed-to-terminate",
238
+ terminated = "terminated",
239
+ terminating = "terminating",
240
+ }
235
241
  export interface ClientVpnConnectionStatus {
236
242
  Code?: ClientVpnConnectionStatusCode | string;
237
243
  Message?: string;
@@ -263,7 +269,9 @@ export interface DescribeClientVpnEndpointsRequest {
263
269
  Filters?: Filter[];
264
270
  DryRun?: boolean;
265
271
  }
266
- export declare type AssociatedNetworkType = "vpc";
272
+ export declare enum AssociatedNetworkType {
273
+ vpc = "vpc",
274
+ }
267
275
  export interface AssociatedTargetNetwork {
268
276
  NetworkId?: string;
269
277
  NetworkType?: AssociatedNetworkType | string;
@@ -284,9 +292,10 @@ export interface ClientVpnAuthentication {
284
292
  MutualAuthentication?: CertificateAuthentication;
285
293
  FederatedAuthentication?: FederatedAuthentication;
286
294
  }
287
- export declare type ClientVpnEndpointAttributeStatusCode =
288
- | "applied"
289
- | "applying";
295
+ export declare enum ClientVpnEndpointAttributeStatusCode {
296
+ applied = "applied",
297
+ applying = "applying",
298
+ }
290
299
  export interface ClientVpnEndpointAttributeStatus {
291
300
  Code?: ClientVpnEndpointAttributeStatusCode | string;
292
301
  Message?: string;
@@ -305,7 +314,9 @@ export interface ConnectionLogResponseOptions {
305
314
  CloudwatchLogGroup?: string;
306
315
  CloudwatchLogStream?: string;
307
316
  }
308
- export declare type VpnProtocol = "openvpn";
317
+ export declare enum VpnProtocol {
318
+ openvpn = "openvpn",
319
+ }
309
320
  export interface ClientVpnEndpoint {
310
321
  ClientVpnEndpointId?: string;
311
322
  Description?: string;
@@ -422,11 +433,12 @@ export interface ImportVolumeTaskDetails {
422
433
  Image?: DiskImageDescription;
423
434
  Volume?: DiskImageVolumeDescription;
424
435
  }
425
- export declare type ConversionTaskState =
426
- | "active"
427
- | "cancelled"
428
- | "cancelling"
429
- | "completed";
436
+ export declare enum ConversionTaskState {
437
+ active = "active",
438
+ cancelled = "cancelled",
439
+ cancelling = "cancelling",
440
+ completed = "completed",
441
+ }
430
442
  export interface ConversionTask {
431
443
  ConversionTaskId?: string;
432
444
  ExpirationTime?: string;
@@ -579,12 +591,13 @@ export interface DescribeFastSnapshotRestoresRequest {
579
591
  NextToken?: string;
580
592
  DryRun?: boolean;
581
593
  }
582
- export declare type FastSnapshotRestoreStateCode =
583
- | "disabled"
584
- | "disabling"
585
- | "enabled"
586
- | "enabling"
587
- | "optimizing";
594
+ export declare enum FastSnapshotRestoreStateCode {
595
+ disabled = "disabled",
596
+ disabling = "disabling",
597
+ enabled = "enabled",
598
+ enabling = "enabling",
599
+ optimizing = "optimizing",
600
+ }
588
601
  export interface DescribeFastSnapshotRestoreSuccessItem {
589
602
  SnapshotId?: string;
590
603
  AvailabilityZone?: string;
@@ -772,22 +785,28 @@ export interface DescribeFlowLogsResult {
772
785
  FlowLogs?: FlowLog[];
773
786
  NextToken?: string;
774
787
  }
775
- export declare type FpgaImageAttributeName =
776
- | "description"
777
- | "loadPermission"
778
- | "name"
779
- | "productCodes";
788
+ export declare enum FpgaImageAttributeName {
789
+ description = "description",
790
+ loadPermission = "loadPermission",
791
+ name = "name",
792
+ productCodes = "productCodes",
793
+ }
780
794
  export interface DescribeFpgaImageAttributeRequest {
781
795
  DryRun?: boolean;
782
796
  FpgaImageId: string | undefined;
783
797
  Attribute: FpgaImageAttributeName | string | undefined;
784
798
  }
785
- export declare type PermissionGroup = "all";
799
+ export declare enum PermissionGroup {
800
+ all = "all",
801
+ }
786
802
  export interface LoadPermission {
787
803
  UserId?: string;
788
804
  Group?: PermissionGroup | string;
789
805
  }
790
- export declare type ProductCodeValues = "devpay" | "marketplace";
806
+ export declare enum ProductCodeValues {
807
+ devpay = "devpay",
808
+ marketplace = "marketplace",
809
+ }
791
810
  export interface ProductCode {
792
811
  ProductCodeId?: string;
793
812
  ProductCodeType?: ProductCodeValues | string;
@@ -816,11 +835,12 @@ export interface PciId {
816
835
  SubsystemId?: string;
817
836
  SubsystemVendorId?: string;
818
837
  }
819
- export declare type FpgaImageStateCode =
820
- | "available"
821
- | "failed"
822
- | "pending"
823
- | "unavailable";
838
+ export declare enum FpgaImageStateCode {
839
+ available = "available",
840
+ failed = "failed",
841
+ pending = "pending",
842
+ unavailable = "unavailable",
843
+ }
824
844
  export interface FpgaImageState {
825
845
  Code?: FpgaImageStateCode | string;
826
846
  Message?: string;
@@ -978,18 +998,19 @@ export interface DescribeIdFormatRequest {
978
998
  export interface DescribeIdFormatResult {
979
999
  Statuses?: IdFormat[];
980
1000
  }
981
- export declare type ImageAttributeName =
982
- | "blockDeviceMapping"
983
- | "bootMode"
984
- | "description"
985
- | "kernel"
986
- | "lastLaunchedTime"
987
- | "launchPermission"
988
- | "productCodes"
989
- | "ramdisk"
990
- | "sriovNetSupport"
991
- | "tpmSupport"
992
- | "uefiData";
1001
+ export declare enum ImageAttributeName {
1002
+ blockDeviceMapping = "blockDeviceMapping",
1003
+ bootMode = "bootMode",
1004
+ description = "description",
1005
+ kernel = "kernel",
1006
+ lastLaunchedTime = "lastLaunchedTime",
1007
+ launchPermission = "launchPermission",
1008
+ productCodes = "productCodes",
1009
+ ramdisk = "ramdisk",
1010
+ sriovNetSupport = "sriovNetSupport",
1011
+ tpmSupport = "tpmSupport",
1012
+ uefiData = "uefiData",
1013
+ }
993
1014
  export interface DescribeImageAttributeRequest {
994
1015
  Attribute: ImageAttributeName | string | undefined;
995
1016
  ImageId: string | undefined;
@@ -1023,27 +1044,45 @@ export interface DescribeImagesRequest {
1023
1044
  IncludeDeprecated?: boolean;
1024
1045
  DryRun?: boolean;
1025
1046
  }
1026
- export declare type ArchitectureValues =
1027
- | "arm64"
1028
- | "i386"
1029
- | "x86_64"
1030
- | "x86_64_mac";
1031
- export declare type BootModeValues = "legacy-bios" | "uefi";
1032
- export declare type HypervisorType = "ovm" | "xen";
1033
- export declare type ImageTypeValues = "kernel" | "machine" | "ramdisk";
1034
- export declare type DeviceType = "ebs" | "instance-store";
1035
- export declare type ImageState =
1036
- | "available"
1037
- | "deregistered"
1038
- | "error"
1039
- | "failed"
1040
- | "invalid"
1041
- | "pending"
1042
- | "transient";
1047
+ export declare enum ArchitectureValues {
1048
+ arm64 = "arm64",
1049
+ i386 = "i386",
1050
+ x86_64 = "x86_64",
1051
+ x86_64_mac = "x86_64_mac",
1052
+ }
1053
+ export declare enum BootModeValues {
1054
+ legacy_bios = "legacy-bios",
1055
+ uefi = "uefi",
1056
+ }
1057
+ export declare enum HypervisorType {
1058
+ ovm = "ovm",
1059
+ xen = "xen",
1060
+ }
1061
+ export declare enum ImageTypeValues {
1062
+ kernel = "kernel",
1063
+ machine = "machine",
1064
+ ramdisk = "ramdisk",
1065
+ }
1066
+ export declare enum DeviceType {
1067
+ ebs = "ebs",
1068
+ instance_store = "instance-store",
1069
+ }
1070
+ export declare enum ImageState {
1071
+ available = "available",
1072
+ deregistered = "deregistered",
1073
+ error = "error",
1074
+ failed = "failed",
1075
+ invalid = "invalid",
1076
+ pending = "pending",
1077
+ transient = "transient",
1078
+ }
1043
1079
  export declare enum TpmSupportValues {
1044
1080
  v2_0 = "v2.0",
1045
1081
  }
1046
- export declare type VirtualizationType = "hvm" | "paravirtual";
1082
+ export declare enum VirtualizationType {
1083
+ hvm = "hvm",
1084
+ paravirtual = "paravirtual",
1085
+ }
1047
1086
  export interface Image {
1048
1087
  Architecture?: ArchitectureValues | string;
1049
1088
  CreationDate?: string;
@@ -1157,23 +1196,24 @@ export interface DescribeImportSnapshotTasksResult {
1157
1196
  ImportSnapshotTasks?: ImportSnapshotTask[];
1158
1197
  NextToken?: string;
1159
1198
  }
1160
- export declare type InstanceAttributeName =
1161
- | "blockDeviceMapping"
1162
- | "disableApiStop"
1163
- | "disableApiTermination"
1164
- | "ebsOptimized"
1165
- | "enaSupport"
1166
- | "enclaveOptions"
1167
- | "groupSet"
1168
- | "instanceInitiatedShutdownBehavior"
1169
- | "instanceType"
1170
- | "kernel"
1171
- | "productCodes"
1172
- | "ramdisk"
1173
- | "rootDeviceName"
1174
- | "sourceDestCheck"
1175
- | "sriovNetSupport"
1176
- | "userData";
1199
+ export declare enum InstanceAttributeName {
1200
+ blockDeviceMapping = "blockDeviceMapping",
1201
+ disableApiStop = "disableApiStop",
1202
+ disableApiTermination = "disableApiTermination",
1203
+ ebsOptimized = "ebsOptimized",
1204
+ enaSupport = "enaSupport",
1205
+ enclaveOptions = "enclaveOptions",
1206
+ groupSet = "groupSet",
1207
+ instanceInitiatedShutdownBehavior = "instanceInitiatedShutdownBehavior",
1208
+ instanceType = "instanceType",
1209
+ kernel = "kernel",
1210
+ productCodes = "productCodes",
1211
+ ramdisk = "ramdisk",
1212
+ rootDeviceName = "rootDeviceName",
1213
+ sourceDestCheck = "sourceDestCheck",
1214
+ sriovNetSupport = "sriovNetSupport",
1215
+ userData = "userData",
1216
+ }
1177
1217
  export interface DescribeInstanceAttributeRequest {
1178
1218
  Attribute: InstanceAttributeName | string | undefined;
1179
1219
  DryRun?: boolean;
@@ -1276,7 +1316,10 @@ export interface ElasticInferenceAcceleratorAssociation {
1276
1316
  export interface HibernationOptions {
1277
1317
  Configured?: boolean;
1278
1318
  }
1279
- export declare type InstanceLifecycleType = "scheduled" | "spot";
1319
+ export declare enum InstanceLifecycleType {
1320
+ scheduled = "scheduled",
1321
+ spot = "spot",
1322
+ }
1280
1323
  export interface LicenseConfiguration {
1281
1324
  LicenseConfigurationArn?: string;
1282
1325
  }
@@ -1287,7 +1330,10 @@ export declare enum InstanceAutoRecoveryState {
1287
1330
  export interface InstanceMaintenanceOptions {
1288
1331
  AutoRecovery?: InstanceAutoRecoveryState | string;
1289
1332
  }
1290
- export declare type InstanceMetadataEndpointState = "disabled" | "enabled";
1333
+ export declare enum InstanceMetadataEndpointState {
1334
+ disabled = "disabled",
1335
+ enabled = "enabled",
1336
+ }
1291
1337
  export declare enum InstanceMetadataProtocolState {
1292
1338
  disabled = "disabled",
1293
1339
  enabled = "enabled",
@@ -1300,7 +1346,10 @@ export declare enum InstanceMetadataTagsState {
1300
1346
  disabled = "disabled",
1301
1347
  enabled = "enabled",
1302
1348
  }
1303
- export declare type InstanceMetadataOptionsState = "applied" | "pending";
1349
+ export declare enum InstanceMetadataOptionsState {
1350
+ applied = "applied",
1351
+ pending = "pending",
1352
+ }
1304
1353
  export interface InstanceMetadataOptionsResponse {
1305
1354
  State?: InstanceMetadataOptionsState | string;
1306
1355
  HttpTokens?: HttpTokensState | string;
@@ -1309,11 +1358,12 @@ export interface InstanceMetadataOptionsResponse {
1309
1358
  HttpProtocolIpv6?: InstanceMetadataProtocolState | string;
1310
1359
  InstanceMetadataTags?: InstanceMetadataTagsState | string;
1311
1360
  }
1312
- export declare type MonitoringState =
1313
- | "disabled"
1314
- | "disabling"
1315
- | "enabled"
1316
- | "pending";
1361
+ export declare enum MonitoringState {
1362
+ disabled = "disabled",
1363
+ disabling = "disabling",
1364
+ enabled = "enabled",
1365
+ pending = "pending",
1366
+ }
1317
1367
  export interface Monitoring {
1318
1368
  State?: MonitoringState | string;
1319
1369
  }
@@ -1369,13 +1419,14 @@ export interface PrivateDnsNameOptionsResponse {
1369
1419
  EnableResourceNameDnsARecord?: boolean;
1370
1420
  EnableResourceNameDnsAAAARecord?: boolean;
1371
1421
  }
1372
- export declare type InstanceStateName =
1373
- | "pending"
1374
- | "running"
1375
- | "shutting-down"
1376
- | "stopped"
1377
- | "stopping"
1378
- | "terminated";
1422
+ export declare enum InstanceStateName {
1423
+ pending = "pending",
1424
+ running = "running",
1425
+ shutting_down = "shutting-down",
1426
+ stopped = "stopped",
1427
+ stopping = "stopping",
1428
+ terminated = "terminated",
1429
+ }
1379
1430
  export interface InstanceState {
1380
1431
  Code?: number;
1381
1432
  Name?: InstanceStateName | string;
@@ -1457,12 +1508,13 @@ export interface DescribeInstanceStatusRequest {
1457
1508
  DryRun?: boolean;
1458
1509
  IncludeAllInstances?: boolean;
1459
1510
  }
1460
- export declare type EventCode =
1461
- | "instance-reboot"
1462
- | "instance-retirement"
1463
- | "instance-stop"
1464
- | "system-maintenance"
1465
- | "system-reboot";
1511
+ export declare enum EventCode {
1512
+ instance_reboot = "instance-reboot",
1513
+ instance_retirement = "instance-retirement",
1514
+ instance_stop = "instance-stop",
1515
+ system_maintenance = "system-maintenance",
1516
+ system_reboot = "system-reboot",
1517
+ }
1466
1518
  export interface InstanceStatusEvent {
1467
1519
  InstanceEventId?: string;
1468
1520
  Code?: EventCode | string;
@@ -1471,23 +1523,27 @@ export interface InstanceStatusEvent {
1471
1523
  NotBefore?: Date;
1472
1524
  NotBeforeDeadline?: Date;
1473
1525
  }
1474
- export declare type StatusName = "reachability";
1475
- export declare type StatusType =
1476
- | "failed"
1477
- | "initializing"
1478
- | "insufficient-data"
1479
- | "passed";
1526
+ export declare enum StatusName {
1527
+ reachability = "reachability",
1528
+ }
1529
+ export declare enum StatusType {
1530
+ failed = "failed",
1531
+ initializing = "initializing",
1532
+ insufficient_data = "insufficient-data",
1533
+ passed = "passed",
1534
+ }
1480
1535
  export interface InstanceStatusDetails {
1481
1536
  ImpairedSince?: Date;
1482
1537
  Name?: StatusName | string;
1483
1538
  Status?: StatusType | string;
1484
1539
  }
1485
- export declare type SummaryStatus =
1486
- | "impaired"
1487
- | "initializing"
1488
- | "insufficient-data"
1489
- | "not-applicable"
1490
- | "ok";
1540
+ export declare enum SummaryStatus {
1541
+ impaired = "impaired",
1542
+ initializing = "initializing",
1543
+ insufficient_data = "insufficient-data",
1544
+ not_applicable = "not-applicable",
1545
+ ok = "ok",
1546
+ }
1491
1547
  export interface InstanceStatusSummary {
1492
1548
  Details?: InstanceStatusDetails[];
1493
1549
  Status?: SummaryStatus | string;
@@ -1505,10 +1561,11 @@ export interface DescribeInstanceStatusResult {
1505
1561
  InstanceStatuses?: InstanceStatus[];
1506
1562
  NextToken?: string;
1507
1563
  }
1508
- export declare type LocationType =
1509
- | "availability-zone"
1510
- | "availability-zone-id"
1511
- | "region";
1564
+ export declare enum LocationType {
1565
+ availability_zone = "availability-zone",
1566
+ availability_zone_id = "availability-zone-id",
1567
+ region = "region",
1568
+ }
1512
1569
  export interface DescribeInstanceTypeOfferingsRequest {
1513
1570
  DryRun?: boolean;
1514
1571
  LocationType?: LocationType | string;
@@ -1540,11 +1597,15 @@ export interface EbsOptimizedInfo {
1540
1597
  MaximumThroughputInMBps?: number;
1541
1598
  MaximumIops?: number;
1542
1599
  }
1543
- export declare type EbsOptimizedSupport =
1544
- | "default"
1545
- | "supported"
1546
- | "unsupported";
1547
- export declare type EbsEncryptionSupport = "supported" | "unsupported";
1600
+ export declare enum EbsOptimizedSupport {
1601
+ default = "default",
1602
+ supported = "supported",
1603
+ unsupported = "unsupported",
1604
+ }
1605
+ export declare enum EbsEncryptionSupport {
1606
+ supported = "supported",
1607
+ unsupported = "unsupported",
1608
+ }
1548
1609
  export declare enum EbsNvmeSupport {
1549
1610
  REQUIRED = "required",
1550
1611
  SUPPORTED = "supported",
@@ -1594,7 +1655,10 @@ export interface InferenceDeviceInfo {
1594
1655
  export interface InferenceAcceleratorInfo {
1595
1656
  Accelerators?: InferenceDeviceInfo[];
1596
1657
  }
1597
- export declare type DiskType = "hdd" | "ssd";
1658
+ export declare enum DiskType {
1659
+ hdd = "hdd",
1660
+ ssd = "ssd",
1661
+ }
1598
1662
  export interface DiskInfo {
1599
1663
  SizeInGB?: number;
1600
1664
  Count?: number;
@@ -1621,7 +1685,11 @@ export interface MemoryInfo {
1621
1685
  export interface EfaInfo {
1622
1686
  MaximumEfaInterfaces?: number;
1623
1687
  }
1624
- export declare type EnaSupport = "required" | "supported" | "unsupported";
1688
+ export declare enum EnaSupport {
1689
+ required = "required",
1690
+ supported = "supported",
1691
+ unsupported = "unsupported",
1692
+ }
1625
1693
  export interface NetworkCardInfo {
1626
1694
  NetworkCardIndex?: number;
1627
1695
  NetworkPerformance?: string;
@@ -1641,22 +1709,36 @@ export interface NetworkInfo {
1641
1709
  EfaInfo?: EfaInfo;
1642
1710
  EncryptionInTransitSupported?: boolean;
1643
1711
  }
1644
- export declare type PlacementGroupStrategy = "cluster" | "partition" | "spread";
1712
+ export declare enum PlacementGroupStrategy {
1713
+ cluster = "cluster",
1714
+ partition = "partition",
1715
+ spread = "spread",
1716
+ }
1645
1717
  export interface PlacementGroupInfo {
1646
1718
  SupportedStrategies?: (PlacementGroupStrategy | string)[];
1647
1719
  }
1648
- export declare type ArchitectureType =
1649
- | "arm64"
1650
- | "i386"
1651
- | "x86_64"
1652
- | "x86_64_mac";
1720
+ export declare enum ArchitectureType {
1721
+ arm64 = "arm64",
1722
+ i386 = "i386",
1723
+ x86_64 = "x86_64",
1724
+ x86_64_mac = "x86_64_mac",
1725
+ }
1653
1726
  export interface ProcessorInfo {
1654
1727
  SupportedArchitectures?: (ArchitectureType | string)[];
1655
1728
  SustainedClockSpeedInGhz?: number;
1656
1729
  }
1657
- export declare type BootModeType = "legacy-bios" | "uefi";
1658
- export declare type RootDeviceType = "ebs" | "instance-store";
1659
- export declare type UsageClassType = "on-demand" | "spot";
1730
+ export declare enum BootModeType {
1731
+ legacy_bios = "legacy-bios",
1732
+ uefi = "uefi",
1733
+ }
1734
+ export declare enum RootDeviceType {
1735
+ ebs = "ebs",
1736
+ instance_store = "instance-store",
1737
+ }
1738
+ export declare enum UsageClassType {
1739
+ on_demand = "on-demand",
1740
+ spot = "spot",
1741
+ }
1660
1742
  export interface VCpuInfo {
1661
1743
  DefaultVCpus?: number;
1662
1744
  DefaultCores?: number;
@@ -1873,13 +1955,9 @@ export interface DescribeLocalGatewayVirtualInterfaceGroupsResult {
1873
1955
  LocalGatewayVirtualInterfaceGroups?: LocalGatewayVirtualInterfaceGroup[];
1874
1956
  NextToken?: string;
1875
1957
  }
1876
- export interface DescribeLocalGatewayVirtualInterfacesRequest {
1877
- LocalGatewayVirtualInterfaceIds?: string[];
1878
- Filters?: Filter[];
1879
- MaxResults?: number;
1880
- NextToken?: string;
1881
- DryRun?: boolean;
1882
- }
1958
+ export declare const DescribeAggregateIdFormatRequestFilterSensitiveLog: (
1959
+ obj: DescribeAggregateIdFormatRequest
1960
+ ) => any;
1883
1961
  export declare const IdFormatFilterSensitiveLog: (obj: IdFormat) => any;
1884
1962
  export declare const DescribeAggregateIdFormatResultFilterSensitiveLog: (
1885
1963
  obj: DescribeAggregateIdFormatResult
@@ -2552,6 +2630,3 @@ export declare const LocalGatewayVirtualInterfaceGroupFilterSensitiveLog: (
2552
2630
  export declare const DescribeLocalGatewayVirtualInterfaceGroupsResultFilterSensitiveLog: (
2553
2631
  obj: DescribeLocalGatewayVirtualInterfaceGroupsResult
2554
2632
  ) => any;
2555
- export declare const DescribeLocalGatewayVirtualInterfacesRequestFilterSensitiveLog: (
2556
- obj: DescribeLocalGatewayVirtualInterfacesRequest
2557
- ) => any;