@aws-sdk/client-ec2 3.428.0 → 3.430.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.
@@ -100,7 +100,7 @@ export declare const DeleteQueuedReservedInstancesErrorCode: {
100
100
  export type DeleteQueuedReservedInstancesErrorCode =
101
101
  (typeof DeleteQueuedReservedInstancesErrorCode)[keyof typeof DeleteQueuedReservedInstancesErrorCode];
102
102
  export interface DeleteQueuedReservedInstancesError {
103
- Code?: DeleteQueuedReservedInstancesErrorCode | string;
103
+ Code?: DeleteQueuedReservedInstancesErrorCode;
104
104
  Message?: string;
105
105
  }
106
106
  export interface FailedQueuedPurchaseDeletion {
@@ -359,7 +359,7 @@ export declare const IpamPoolCidrFailureCode: {
359
359
  export type IpamPoolCidrFailureCode =
360
360
  (typeof IpamPoolCidrFailureCode)[keyof typeof IpamPoolCidrFailureCode];
361
361
  export interface IpamPoolCidrFailureReason {
362
- Code?: IpamPoolCidrFailureCode | string;
362
+ Code?: IpamPoolCidrFailureCode;
363
363
  Message?: string;
364
364
  }
365
365
  export declare const IpamPoolCidrState: {
@@ -376,7 +376,7 @@ export type IpamPoolCidrState =
376
376
  (typeof IpamPoolCidrState)[keyof typeof IpamPoolCidrState];
377
377
  export interface IpamPoolCidr {
378
378
  Cidr?: string;
379
- State?: IpamPoolCidrState | string;
379
+ State?: IpamPoolCidrState;
380
380
  FailureReason?: IpamPoolCidrFailureReason;
381
381
  IpamPoolCidrId?: string;
382
382
  NetmaskLength?: number;
@@ -441,7 +441,7 @@ export interface DeregisterTransitGatewayMulticastGroupSourcesResult {
441
441
  DeregisteredMulticastGroupSources?: TransitGatewayMulticastDeregisteredGroupSources;
442
442
  }
443
443
  export interface DescribeAccountAttributesRequest {
444
- AttributeNames?: (AccountAttributeName | string)[];
444
+ AttributeNames?: AccountAttributeName[];
445
445
  DryRun?: boolean;
446
446
  }
447
447
  export interface DescribeAccountAttributesResult {
@@ -462,7 +462,7 @@ export interface DescribeAddressesResult {
462
462
  }
463
463
  export interface DescribeAddressesAttributeRequest {
464
464
  AllocationIds?: string[];
465
- Attribute?: AddressAttributeName | string;
465
+ Attribute?: AddressAttributeName;
466
466
  NextToken?: string;
467
467
  MaxResults?: number;
468
468
  DryRun?: boolean;
@@ -519,8 +519,8 @@ export declare const AvailabilityZoneState: {
519
519
  export type AvailabilityZoneState =
520
520
  (typeof AvailabilityZoneState)[keyof typeof AvailabilityZoneState];
521
521
  export interface AvailabilityZone {
522
- State?: AvailabilityZoneState | string;
523
- OptInStatus?: AvailabilityZoneOptInStatus | string;
522
+ State?: AvailabilityZoneState;
523
+ OptInStatus?: AvailabilityZoneOptInStatus;
524
524
  Messages?: AvailabilityZoneMessage[];
525
525
  RegionName?: string;
526
526
  ZoneName?: string;
@@ -560,9 +560,9 @@ export type StatisticType = (typeof StatisticType)[keyof typeof StatisticType];
560
560
  export interface Subscription {
561
561
  Source?: string;
562
562
  Destination?: string;
563
- Metric?: MetricType | string;
564
- Statistic?: StatisticType | string;
565
- Period?: PeriodType | string;
563
+ Metric?: MetricType;
564
+ Statistic?: StatisticType;
565
+ Period?: PeriodType;
566
566
  }
567
567
  export interface DescribeAwsNetworkPerformanceMetricSubscriptionsResult {
568
568
  NextToken?: string;
@@ -595,13 +595,13 @@ export interface DescribeCapacityReservationFleetsRequest {
595
595
  export interface CapacityReservationFleet {
596
596
  CapacityReservationFleetId?: string;
597
597
  CapacityReservationFleetArn?: string;
598
- State?: CapacityReservationFleetState | string;
598
+ State?: CapacityReservationFleetState;
599
599
  TotalTargetCapacity?: number;
600
600
  TotalFulfilledCapacity?: number;
601
- Tenancy?: FleetCapacityReservationTenancy | string;
601
+ Tenancy?: FleetCapacityReservationTenancy;
602
602
  EndDate?: Date;
603
603
  CreateTime?: Date;
604
- InstanceMatchCriteria?: FleetInstanceMatchCriteria | string;
604
+ InstanceMatchCriteria?: FleetInstanceMatchCriteria;
605
605
  AllocationStrategy?: string;
606
606
  InstanceTypeSpecifications?: FleetCapacityReservation[];
607
607
  Tags?: Tag[];
@@ -684,7 +684,7 @@ export declare const ClientVpnConnectionStatusCode: {
684
684
  export type ClientVpnConnectionStatusCode =
685
685
  (typeof ClientVpnConnectionStatusCode)[keyof typeof ClientVpnConnectionStatusCode];
686
686
  export interface ClientVpnConnectionStatus {
687
- Code?: ClientVpnConnectionStatusCode | string;
687
+ Code?: ClientVpnConnectionStatusCode;
688
688
  Message?: string;
689
689
  }
690
690
  export interface ClientVpnConnection {
@@ -721,7 +721,7 @@ export type AssociatedNetworkType =
721
721
  (typeof AssociatedNetworkType)[keyof typeof AssociatedNetworkType];
722
722
  export interface AssociatedTargetNetwork {
723
723
  NetworkId?: string;
724
- NetworkType?: AssociatedNetworkType | string;
724
+ NetworkType?: AssociatedNetworkType;
725
725
  }
726
726
  export interface DirectoryServiceAuthentication {
727
727
  DirectoryId?: string;
@@ -734,7 +734,7 @@ export interface CertificateAuthentication {
734
734
  ClientRootCertificateChain?: string;
735
735
  }
736
736
  export interface ClientVpnAuthentication {
737
- Type?: ClientVpnAuthenticationType | string;
737
+ Type?: ClientVpnAuthenticationType;
738
738
  ActiveDirectory?: DirectoryServiceAuthentication;
739
739
  MutualAuthentication?: CertificateAuthentication;
740
740
  FederatedAuthentication?: FederatedAuthentication;
@@ -746,7 +746,7 @@ export declare const ClientVpnEndpointAttributeStatusCode: {
746
746
  export type ClientVpnEndpointAttributeStatusCode =
747
747
  (typeof ClientVpnEndpointAttributeStatusCode)[keyof typeof ClientVpnEndpointAttributeStatusCode];
748
748
  export interface ClientVpnEndpointAttributeStatus {
749
- Code?: ClientVpnEndpointAttributeStatusCode | string;
749
+ Code?: ClientVpnEndpointAttributeStatusCode;
750
750
  Message?: string;
751
751
  }
752
752
  export interface ClientConnectResponseOptions {
@@ -777,8 +777,8 @@ export interface ClientVpnEndpoint {
777
777
  ClientCidrBlock?: string;
778
778
  DnsServers?: string[];
779
779
  SplitTunnel?: boolean;
780
- VpnProtocol?: VpnProtocol | string;
781
- TransportProtocol?: TransportProtocol | string;
780
+ VpnProtocol?: VpnProtocol;
781
+ TransportProtocol?: TransportProtocol;
782
782
  VpnPort?: number;
783
783
  AssociatedTargetNetworks?: AssociatedTargetNetwork[];
784
784
  ServerCertificateArn?: string;
@@ -853,7 +853,7 @@ export interface DescribeConversionTasksRequest {
853
853
  }
854
854
  export interface DiskImageDescription {
855
855
  Checksum?: string;
856
- Format?: DiskImageFormat | string;
856
+ Format?: DiskImageFormat;
857
857
  ImportManifestUrl?: string;
858
858
  Size?: number;
859
859
  }
@@ -873,7 +873,7 @@ export interface ImportInstanceVolumeDetailItem {
873
873
  export interface ImportInstanceTaskDetails {
874
874
  Description?: string;
875
875
  InstanceId?: string;
876
- Platform?: PlatformValues | string;
876
+ Platform?: PlatformValues;
877
877
  Volumes?: ImportInstanceVolumeDetailItem[];
878
878
  }
879
879
  export interface ImportVolumeTaskDetails {
@@ -896,7 +896,7 @@ export interface ConversionTask {
896
896
  ExpirationTime?: string;
897
897
  ImportInstance?: ImportInstanceTaskDetails;
898
898
  ImportVolume?: ImportVolumeTaskDetails;
899
- State?: ConversionTaskState | string;
899
+ State?: ConversionTaskState;
900
900
  StatusMessage?: string;
901
901
  Tags?: Tag[];
902
902
  }
@@ -947,7 +947,7 @@ export declare const ElasticGpuStatus: {
947
947
  export type ElasticGpuStatus =
948
948
  (typeof ElasticGpuStatus)[keyof typeof ElasticGpuStatus];
949
949
  export interface ElasticGpuHealth {
950
- Status?: ElasticGpuStatus | string;
950
+ Status?: ElasticGpuStatus;
951
951
  }
952
952
  export declare const ElasticGpuState: {
953
953
  readonly Attached: "ATTACHED";
@@ -959,7 +959,7 @@ export interface ElasticGpus {
959
959
  AvailabilityZone?: string;
960
960
  ElasticGpuType?: string;
961
961
  ElasticGpuHealth?: ElasticGpuHealth;
962
- ElasticGpuState?: ElasticGpuState | string;
962
+ ElasticGpuState?: ElasticGpuState;
963
963
  InstanceId?: string;
964
964
  Tags?: Tag[];
965
965
  }
@@ -1032,12 +1032,12 @@ export type FastLaunchStateCode =
1032
1032
  (typeof FastLaunchStateCode)[keyof typeof FastLaunchStateCode];
1033
1033
  export interface DescribeFastLaunchImagesSuccessItem {
1034
1034
  ImageId?: string;
1035
- ResourceType?: FastLaunchResourceType | string;
1035
+ ResourceType?: FastLaunchResourceType;
1036
1036
  SnapshotConfiguration?: FastLaunchSnapshotConfigurationResponse;
1037
1037
  LaunchTemplate?: FastLaunchLaunchTemplateSpecificationResponse;
1038
1038
  MaxParallelLaunches?: number;
1039
1039
  OwnerId?: string;
1040
- State?: FastLaunchStateCode | string;
1040
+ State?: FastLaunchStateCode;
1041
1041
  StateTransitionReason?: string;
1042
1042
  StateTransitionTime?: Date;
1043
1043
  }
@@ -1063,7 +1063,7 @@ export type FastSnapshotRestoreStateCode =
1063
1063
  export interface DescribeFastSnapshotRestoreSuccessItem {
1064
1064
  SnapshotId?: string;
1065
1065
  AvailabilityZone?: string;
1066
- State?: FastSnapshotRestoreStateCode | string;
1066
+ State?: FastSnapshotRestoreStateCode;
1067
1067
  StateTransitionReason?: string;
1068
1068
  OwnerId?: string;
1069
1069
  OwnerAlias?: string;
@@ -1086,7 +1086,7 @@ export type FleetEventType =
1086
1086
  (typeof FleetEventType)[keyof typeof FleetEventType];
1087
1087
  export interface DescribeFleetHistoryRequest {
1088
1088
  DryRun?: boolean;
1089
- EventType?: FleetEventType | string;
1089
+ EventType?: FleetEventType;
1090
1090
  MaxResults?: number;
1091
1091
  NextToken?: string;
1092
1092
  FleetId: string | undefined;
@@ -1099,7 +1099,7 @@ export interface EventInformation {
1099
1099
  }
1100
1100
  export interface HistoryRecordEntry {
1101
1101
  EventInformation?: EventInformation;
1102
- EventType?: FleetEventType | string;
1102
+ EventType?: FleetEventType;
1103
1103
  Timestamp?: Date;
1104
1104
  }
1105
1105
  export interface DescribeFleetHistoryResult {
@@ -1138,26 +1138,26 @@ export type FleetActivityStatus =
1138
1138
  (typeof FleetActivityStatus)[keyof typeof FleetActivityStatus];
1139
1139
  export interface DescribeFleetError {
1140
1140
  LaunchTemplateAndOverrides?: LaunchTemplateAndOverridesResponse;
1141
- Lifecycle?: InstanceLifecycle | string;
1141
+ Lifecycle?: InstanceLifecycle;
1142
1142
  ErrorCode?: string;
1143
1143
  ErrorMessage?: string;
1144
1144
  }
1145
1145
  export interface DescribeFleetsInstances {
1146
1146
  LaunchTemplateAndOverrides?: LaunchTemplateAndOverridesResponse;
1147
- Lifecycle?: InstanceLifecycle | string;
1147
+ Lifecycle?: InstanceLifecycle;
1148
1148
  InstanceIds?: string[];
1149
- InstanceType?: _InstanceType | string;
1150
- Platform?: PlatformValues | string;
1149
+ InstanceType?: _InstanceType;
1150
+ Platform?: PlatformValues;
1151
1151
  }
1152
1152
  export interface FleetLaunchTemplateConfig {
1153
1153
  LaunchTemplateSpecification?: FleetLaunchTemplateSpecification;
1154
1154
  Overrides?: FleetLaunchTemplateOverrides[];
1155
1155
  }
1156
1156
  export interface CapacityReservationOptions {
1157
- UsageStrategy?: FleetCapacityReservationUsageStrategy | string;
1157
+ UsageStrategy?: FleetCapacityReservationUsageStrategy;
1158
1158
  }
1159
1159
  export interface OnDemandOptions {
1160
- AllocationStrategy?: FleetOnDemandAllocationStrategy | string;
1160
+ AllocationStrategy?: FleetOnDemandAllocationStrategy;
1161
1161
  CapacityReservationOptions?: CapacityReservationOptions;
1162
1162
  SingleInstanceType?: boolean;
1163
1163
  SingleAvailabilityZone?: boolean;
@@ -1165,16 +1165,16 @@ export interface OnDemandOptions {
1165
1165
  MaxTotalPrice?: string;
1166
1166
  }
1167
1167
  export interface FleetSpotCapacityRebalance {
1168
- ReplacementStrategy?: FleetReplacementStrategy | string;
1168
+ ReplacementStrategy?: FleetReplacementStrategy;
1169
1169
  TerminationDelay?: number;
1170
1170
  }
1171
1171
  export interface FleetSpotMaintenanceStrategies {
1172
1172
  CapacityRebalance?: FleetSpotCapacityRebalance;
1173
1173
  }
1174
1174
  export interface SpotOptions {
1175
- AllocationStrategy?: SpotAllocationStrategy | string;
1175
+ AllocationStrategy?: SpotAllocationStrategy;
1176
1176
  MaintenanceStrategies?: FleetSpotMaintenanceStrategies;
1177
- InstanceInterruptionBehavior?: SpotInstanceInterruptionBehavior | string;
1177
+ InstanceInterruptionBehavior?: SpotInstanceInterruptionBehavior;
1178
1178
  InstancePoolsToUseCount?: number;
1179
1179
  SingleInstanceType?: boolean;
1180
1180
  SingleAvailabilityZone?: boolean;
@@ -1185,24 +1185,22 @@ export interface TargetCapacitySpecification {
1185
1185
  TotalTargetCapacity?: number;
1186
1186
  OnDemandTargetCapacity?: number;
1187
1187
  SpotTargetCapacity?: number;
1188
- DefaultTargetCapacityType?: DefaultTargetCapacityType | string;
1189
- TargetCapacityUnitType?: TargetCapacityUnitType | string;
1188
+ DefaultTargetCapacityType?: DefaultTargetCapacityType;
1189
+ TargetCapacityUnitType?: TargetCapacityUnitType;
1190
1190
  }
1191
1191
  export interface FleetData {
1192
- ActivityStatus?: FleetActivityStatus | string;
1192
+ ActivityStatus?: FleetActivityStatus;
1193
1193
  CreateTime?: Date;
1194
1194
  FleetId?: string;
1195
- FleetState?: FleetStateCode | string;
1195
+ FleetState?: FleetStateCode;
1196
1196
  ClientToken?: string;
1197
- ExcessCapacityTerminationPolicy?:
1198
- | FleetExcessCapacityTerminationPolicy
1199
- | string;
1197
+ ExcessCapacityTerminationPolicy?: FleetExcessCapacityTerminationPolicy;
1200
1198
  FulfilledCapacity?: number;
1201
1199
  FulfilledOnDemandCapacity?: number;
1202
1200
  LaunchTemplateConfigs?: FleetLaunchTemplateConfig[];
1203
1201
  TargetCapacitySpecification?: TargetCapacitySpecification;
1204
1202
  TerminateInstancesWithExpiration?: boolean;
1205
- Type?: FleetType | string;
1203
+ Type?: FleetType;
1206
1204
  ValidFrom?: Date;
1207
1205
  ValidUntil?: Date;
1208
1206
  ReplaceUnhealthyInstances?: boolean;
@@ -1225,7 +1223,7 @@ export interface DescribeFlowLogsRequest {
1225
1223
  NextToken?: string;
1226
1224
  }
1227
1225
  export interface DestinationOptionsResponse {
1228
- FileFormat?: DestinationFileFormat | string;
1226
+ FileFormat?: DestinationFileFormat;
1229
1227
  HiveCompatiblePartitions?: boolean;
1230
1228
  PerHourPartition?: boolean;
1231
1229
  }
@@ -1239,8 +1237,8 @@ export interface FlowLog {
1239
1237
  FlowLogStatus?: string;
1240
1238
  LogGroupName?: string;
1241
1239
  ResourceId?: string;
1242
- TrafficType?: TrafficType | string;
1243
- LogDestinationType?: LogDestinationType | string;
1240
+ TrafficType?: TrafficType;
1241
+ LogDestinationType?: LogDestinationType;
1244
1242
  LogDestination?: string;
1245
1243
  LogFormat?: string;
1246
1244
  Tags?: Tag[];
@@ -1262,7 +1260,7 @@ export type FpgaImageAttributeName =
1262
1260
  export interface DescribeFpgaImageAttributeRequest {
1263
1261
  DryRun?: boolean;
1264
1262
  FpgaImageId: string | undefined;
1265
- Attribute: FpgaImageAttributeName | string | undefined;
1263
+ Attribute: FpgaImageAttributeName | undefined;
1266
1264
  }
1267
1265
  export declare const PermissionGroup: {
1268
1266
  readonly all: "all";
@@ -1271,7 +1269,7 @@ export type PermissionGroup =
1271
1269
  (typeof PermissionGroup)[keyof typeof PermissionGroup];
1272
1270
  export interface LoadPermission {
1273
1271
  UserId?: string;
1274
- Group?: PermissionGroup | string;
1272
+ Group?: PermissionGroup;
1275
1273
  }
1276
1274
  export declare const ProductCodeValues: {
1277
1275
  readonly devpay: "devpay";
@@ -1281,7 +1279,7 @@ export type ProductCodeValues =
1281
1279
  (typeof ProductCodeValues)[keyof typeof ProductCodeValues];
1282
1280
  export interface ProductCode {
1283
1281
  ProductCodeId?: string;
1284
- ProductCodeType?: ProductCodeValues | string;
1282
+ ProductCodeType?: ProductCodeValues;
1285
1283
  }
1286
1284
  export interface FpgaImageAttribute {
1287
1285
  FpgaImageId?: string;
@@ -1316,7 +1314,7 @@ export declare const FpgaImageStateCode: {
1316
1314
  export type FpgaImageStateCode =
1317
1315
  (typeof FpgaImageStateCode)[keyof typeof FpgaImageStateCode];
1318
1316
  export interface FpgaImageState {
1319
- Code?: FpgaImageStateCode | string;
1317
+ Code?: FpgaImageStateCode;
1320
1318
  Message?: string;
1321
1319
  }
1322
1320
  export interface FpgaImage {
@@ -1356,12 +1354,12 @@ export declare const PaymentOption: {
1356
1354
  };
1357
1355
  export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
1358
1356
  export interface HostOffering {
1359
- CurrencyCode?: CurrencyCodeValues | string;
1357
+ CurrencyCode?: CurrencyCodeValues;
1360
1358
  Duration?: number;
1361
1359
  HourlyPrice?: string;
1362
1360
  InstanceFamily?: string;
1363
1361
  OfferingId?: string;
1364
- PaymentOption?: PaymentOption | string;
1362
+ PaymentOption?: PaymentOption;
1365
1363
  UpfrontPrice?: string;
1366
1364
  }
1367
1365
  export interface DescribeHostReservationOfferingsResult {
@@ -1384,7 +1382,7 @@ export type ReservationState =
1384
1382
  (typeof ReservationState)[keyof typeof ReservationState];
1385
1383
  export interface HostReservation {
1386
1384
  Count?: number;
1387
- CurrencyCode?: CurrencyCodeValues | string;
1385
+ CurrencyCode?: CurrencyCodeValues;
1388
1386
  Duration?: number;
1389
1387
  End?: Date;
1390
1388
  HostIdSet?: string[];
@@ -1392,9 +1390,9 @@ export interface HostReservation {
1392
1390
  HourlyPrice?: string;
1393
1391
  InstanceFamily?: string;
1394
1392
  OfferingId?: string;
1395
- PaymentOption?: PaymentOption | string;
1393
+ PaymentOption?: PaymentOption;
1396
1394
  Start?: Date;
1397
- State?: ReservationState | string;
1395
+ State?: ReservationState;
1398
1396
  UpfrontPrice?: string;
1399
1397
  Tags?: Tag[];
1400
1398
  }
@@ -1430,7 +1428,7 @@ export interface HostInstance {
1430
1428
  OwnerId?: string;
1431
1429
  }
1432
1430
  export interface Host {
1433
- AutoPlacement?: AutoPlacement | string;
1431
+ AutoPlacement?: AutoPlacement;
1434
1432
  AvailabilityZone?: string;
1435
1433
  AvailableCapacity?: AvailableCapacity;
1436
1434
  ClientToken?: string;
@@ -1438,17 +1436,17 @@ export interface Host {
1438
1436
  HostProperties?: HostProperties;
1439
1437
  HostReservationId?: string;
1440
1438
  Instances?: HostInstance[];
1441
- State?: AllocationState | string;
1439
+ State?: AllocationState;
1442
1440
  AllocationTime?: Date;
1443
1441
  ReleaseTime?: Date;
1444
1442
  Tags?: Tag[];
1445
- HostRecovery?: HostRecovery | string;
1446
- AllowsMultipleInstanceTypes?: AllowsMultipleInstanceTypes | string;
1443
+ HostRecovery?: HostRecovery;
1444
+ AllowsMultipleInstanceTypes?: AllowsMultipleInstanceTypes;
1447
1445
  OwnerId?: string;
1448
1446
  AvailabilityZoneId?: string;
1449
1447
  MemberOfServiceLinkedResourceGroup?: boolean;
1450
1448
  OutpostArn?: string;
1451
- HostMaintenance?: HostMaintenance | string;
1449
+ HostMaintenance?: HostMaintenance;
1452
1450
  AssetId?: string;
1453
1451
  }
1454
1452
  export interface DescribeHostsResult {
@@ -1495,12 +1493,12 @@ export declare const ImageAttributeName: {
1495
1493
  export type ImageAttributeName =
1496
1494
  (typeof ImageAttributeName)[keyof typeof ImageAttributeName];
1497
1495
  export interface DescribeImageAttributeRequest {
1498
- Attribute: ImageAttributeName | string | undefined;
1496
+ Attribute: ImageAttributeName | undefined;
1499
1497
  ImageId: string | undefined;
1500
1498
  DryRun?: boolean;
1501
1499
  }
1502
1500
  export interface LaunchPermission {
1503
- Group?: PermissionGroup | string;
1501
+ Group?: PermissionGroup;
1504
1502
  UserId?: string;
1505
1503
  OrganizationArn?: string;
1506
1504
  OrganizationalUnitArn?: string;
@@ -1593,36 +1591,36 @@ export declare const VirtualizationType: {
1593
1591
  export type VirtualizationType =
1594
1592
  (typeof VirtualizationType)[keyof typeof VirtualizationType];
1595
1593
  export interface Image {
1596
- Architecture?: ArchitectureValues | string;
1594
+ Architecture?: ArchitectureValues;
1597
1595
  CreationDate?: string;
1598
1596
  ImageId?: string;
1599
1597
  ImageLocation?: string;
1600
- ImageType?: ImageTypeValues | string;
1598
+ ImageType?: ImageTypeValues;
1601
1599
  Public?: boolean;
1602
1600
  KernelId?: string;
1603
1601
  OwnerId?: string;
1604
- Platform?: PlatformValues | string;
1602
+ Platform?: PlatformValues;
1605
1603
  PlatformDetails?: string;
1606
1604
  UsageOperation?: string;
1607
1605
  ProductCodes?: ProductCode[];
1608
1606
  RamdiskId?: string;
1609
- State?: ImageState | string;
1607
+ State?: ImageState;
1610
1608
  BlockDeviceMappings?: BlockDeviceMapping[];
1611
1609
  Description?: string;
1612
1610
  EnaSupport?: boolean;
1613
- Hypervisor?: HypervisorType | string;
1611
+ Hypervisor?: HypervisorType;
1614
1612
  ImageOwnerAlias?: string;
1615
1613
  Name?: string;
1616
1614
  RootDeviceName?: string;
1617
- RootDeviceType?: DeviceType | string;
1615
+ RootDeviceType?: DeviceType;
1618
1616
  SriovNetSupport?: string;
1619
1617
  StateReason?: StateReason;
1620
1618
  Tags?: Tag[];
1621
- VirtualizationType?: VirtualizationType | string;
1622
- BootMode?: BootModeValues | string;
1623
- TpmSupport?: TpmSupportValues | string;
1619
+ VirtualizationType?: VirtualizationType;
1620
+ BootMode?: BootModeValues;
1621
+ TpmSupport?: TpmSupportValues;
1624
1622
  DeprecationTime?: string;
1625
- ImdsSupport?: ImdsSupportValues | string;
1623
+ ImdsSupport?: ImdsSupportValues;
1626
1624
  SourceInstanceId?: string;
1627
1625
  }
1628
1626
  export interface DescribeImagesResult {
@@ -1672,7 +1670,7 @@ export interface ImportImageTask {
1672
1670
  Tags?: Tag[];
1673
1671
  LicenseSpecifications?: ImportImageLicenseConfigurationResponse[];
1674
1672
  UsageOperation?: string;
1675
- BootMode?: BootModeValues | string;
1673
+ BootMode?: BootModeValues;
1676
1674
  }
1677
1675
  export interface DescribeImportImageTasksResult {
1678
1676
  ImportImageTasks?: ImportImageTask[];
@@ -1729,14 +1727,14 @@ export declare const InstanceAttributeName: {
1729
1727
  export type InstanceAttributeName =
1730
1728
  (typeof InstanceAttributeName)[keyof typeof InstanceAttributeName];
1731
1729
  export interface DescribeInstanceAttributeRequest {
1732
- Attribute: InstanceAttributeName | string | undefined;
1730
+ Attribute: InstanceAttributeName | undefined;
1733
1731
  DryRun?: boolean;
1734
1732
  InstanceId: string | undefined;
1735
1733
  }
1736
1734
  export interface EbsInstanceBlockDevice {
1737
1735
  AttachTime?: Date;
1738
1736
  DeleteOnTermination?: boolean;
1739
- Status?: AttachmentStatus | string;
1737
+ Status?: AttachmentStatus;
1740
1738
  VolumeId?: string;
1741
1739
  }
1742
1740
  export interface InstanceBlockDeviceMapping {
@@ -1819,13 +1817,13 @@ export interface DescribeInstancesRequest {
1819
1817
  NextToken?: string;
1820
1818
  }
1821
1819
  export interface CapacityReservationSpecificationResponse {
1822
- CapacityReservationPreference?: CapacityReservationPreference | string;
1820
+ CapacityReservationPreference?: CapacityReservationPreference;
1823
1821
  CapacityReservationTarget?: CapacityReservationTargetResponse;
1824
1822
  }
1825
1823
  export interface CpuOptions {
1826
1824
  CoreCount?: number;
1827
1825
  ThreadsPerCore?: number;
1828
- AmdSevSnp?: AmdSevSnpSpecification | string;
1826
+ AmdSevSnp?: AmdSevSnpSpecification;
1829
1827
  }
1830
1828
  export declare const InstanceBootModeValues: {
1831
1829
  readonly legacy_bios: "legacy-bios";