@aws-sdk/client-ec2 3.47.2 → 3.51.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 (150) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/dist-cjs/EC2.js +75 -0
  3. package/dist-cjs/commands/DescribeFastLaunchImagesCommand.js +36 -0
  4. package/dist-cjs/commands/DescribeReservedInstancesCommand.js +2 -1
  5. package/dist-cjs/commands/DescribeReservedInstancesListingsCommand.js +3 -3
  6. package/dist-cjs/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
  7. package/dist-cjs/commands/DisableFastLaunchCommand.js +36 -0
  8. package/dist-cjs/commands/EnableFastLaunchCommand.js +36 -0
  9. package/dist-cjs/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
  10. package/dist-cjs/commands/GetIpamAddressHistoryCommand.js +3 -3
  11. package/dist-cjs/commands/GetIpamPoolAllocationsCommand.js +3 -3
  12. package/dist-cjs/commands/GetIpamPoolCidrsCommand.js +3 -3
  13. package/dist-cjs/commands/GetIpamResourceCidrsCommand.js +1 -2
  14. package/dist-cjs/commands/ListImagesInRecycleBinCommand.js +36 -0
  15. package/dist-cjs/commands/ResetInstanceAttributeCommand.js +2 -2
  16. package/dist-cjs/commands/ResetNetworkInterfaceAttributeCommand.js +2 -2
  17. package/dist-cjs/commands/ResetSnapshotAttributeCommand.js +2 -2
  18. package/dist-cjs/commands/RestoreAddressToClassicCommand.js +3 -3
  19. package/dist-cjs/commands/RestoreImageFromRecycleBinCommand.js +36 -0
  20. package/dist-cjs/commands/RestoreManagedPrefixListVersionCommand.js +3 -3
  21. package/dist-cjs/commands/RestoreSnapshotFromRecycleBinCommand.js +3 -3
  22. package/dist-cjs/commands/RestoreSnapshotTierCommand.js +3 -3
  23. package/dist-cjs/commands/RevokeClientVpnIngressCommand.js +3 -3
  24. package/dist-cjs/commands/RevokeSecurityGroupEgressCommand.js +3 -3
  25. package/dist-cjs/commands/RevokeSecurityGroupIngressCommand.js +3 -3
  26. package/dist-cjs/commands/index.js +5 -0
  27. package/dist-cjs/models/models_0.js +14 -7
  28. package/dist-cjs/models/models_1.js +11 -6
  29. package/dist-cjs/models/models_2.js +7 -13
  30. package/dist-cjs/models/models_3.js +61 -53
  31. package/dist-cjs/models/models_4.js +89 -101
  32. package/dist-cjs/models/models_5.js +119 -114
  33. package/dist-cjs/models/models_6.js +122 -2
  34. package/dist-cjs/pagination/DescribeFastLaunchImagesPaginator.js +35 -0
  35. package/dist-cjs/pagination/ListImagesInRecycleBinPaginator.js +35 -0
  36. package/dist-cjs/pagination/index.js +2 -0
  37. package/dist-cjs/protocols/Aws_ec2.js +695 -17
  38. package/dist-es/EC2.js +75 -0
  39. package/dist-es/commands/DescribeFastLaunchImagesCommand.js +39 -0
  40. package/dist-es/commands/DescribeReservedInstancesCommand.js +2 -1
  41. package/dist-es/commands/DescribeReservedInstancesListingsCommand.js +1 -1
  42. package/dist-es/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
  43. package/dist-es/commands/DisableFastLaunchCommand.js +39 -0
  44. package/dist-es/commands/EnableFastLaunchCommand.js +39 -0
  45. package/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
  46. package/dist-es/commands/GetIpamAddressHistoryCommand.js +1 -1
  47. package/dist-es/commands/GetIpamPoolAllocationsCommand.js +1 -1
  48. package/dist-es/commands/GetIpamPoolCidrsCommand.js +1 -1
  49. package/dist-es/commands/GetIpamResourceCidrsCommand.js +1 -2
  50. package/dist-es/commands/ListImagesInRecycleBinCommand.js +39 -0
  51. package/dist-es/commands/ResetInstanceAttributeCommand.js +1 -1
  52. package/dist-es/commands/ResetNetworkInterfaceAttributeCommand.js +1 -1
  53. package/dist-es/commands/ResetSnapshotAttributeCommand.js +1 -1
  54. package/dist-es/commands/RestoreAddressToClassicCommand.js +1 -1
  55. package/dist-es/commands/RestoreImageFromRecycleBinCommand.js +39 -0
  56. package/dist-es/commands/RestoreManagedPrefixListVersionCommand.js +1 -1
  57. package/dist-es/commands/RestoreSnapshotFromRecycleBinCommand.js +1 -1
  58. package/dist-es/commands/RestoreSnapshotTierCommand.js +1 -1
  59. package/dist-es/commands/RevokeClientVpnIngressCommand.js +1 -1
  60. package/dist-es/commands/RevokeSecurityGroupEgressCommand.js +1 -1
  61. package/dist-es/commands/RevokeSecurityGroupIngressCommand.js +1 -1
  62. package/dist-es/commands/index.js +5 -0
  63. package/dist-es/models/models_0.js +10 -5
  64. package/dist-es/models/models_1.js +5 -0
  65. package/dist-es/models/models_2.js +4 -8
  66. package/dist-es/models/models_3.js +41 -33
  67. package/dist-es/models/models_4.js +57 -75
  68. package/dist-es/models/models_5.js +87 -72
  69. package/dist-es/models/models_6.js +80 -0
  70. package/dist-es/pagination/DescribeFastLaunchImagesPaginator.js +74 -0
  71. package/dist-es/pagination/ListImagesInRecycleBinPaginator.js +74 -0
  72. package/dist-es/pagination/index.js +2 -0
  73. package/dist-es/protocols/Aws_ec2.js +1734 -1028
  74. package/dist-types/EC2.d.ts +68 -4
  75. package/dist-types/EC2Client.d.ts +7 -2
  76. package/dist-types/commands/CreateImageCommand.d.ts +6 -0
  77. package/dist-types/commands/DeregisterImageCommand.d.ts +12 -4
  78. package/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +35 -0
  79. package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +2 -1
  80. package/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
  81. package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
  82. package/dist-types/commands/DisableFastLaunchCommand.d.ts +40 -0
  83. package/dist-types/commands/EnableFastLaunchCommand.d.ts +43 -0
  84. package/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
  85. package/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
  86. package/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
  87. package/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
  88. package/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
  89. package/dist-types/commands/ListImagesInRecycleBinCommand.d.ts +37 -0
  90. package/dist-types/commands/ResetInstanceAttributeCommand.d.ts +1 -1
  91. package/dist-types/commands/ResetNetworkInterfaceAttributeCommand.d.ts +1 -1
  92. package/dist-types/commands/ResetSnapshotAttributeCommand.d.ts +1 -1
  93. package/dist-types/commands/RestoreAddressToClassicCommand.d.ts +1 -1
  94. package/dist-types/commands/RestoreImageFromRecycleBinCommand.d.ts +35 -0
  95. package/dist-types/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
  96. package/dist-types/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
  97. package/dist-types/commands/RestoreSnapshotTierCommand.d.ts +1 -1
  98. package/dist-types/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
  99. package/dist-types/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
  100. package/dist-types/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
  101. package/dist-types/commands/index.d.ts +5 -0
  102. package/dist-types/models/models_0.d.ts +53 -11
  103. package/dist-types/models/models_1.d.ts +11 -8
  104. package/dist-types/models/models_2.d.ts +43 -71
  105. package/dist-types/models/models_3.d.ts +240 -298
  106. package/dist-types/models/models_4.d.ts +500 -334
  107. package/dist-types/models/models_5.d.ts +451 -522
  108. package/dist-types/models/models_6.d.ts +520 -5
  109. package/dist-types/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
  110. package/dist-types/pagination/ListImagesInRecycleBinPaginator.d.ts +4 -0
  111. package/dist-types/pagination/index.d.ts +2 -0
  112. package/dist-types/protocols/Aws_ec2.d.ts +15 -0
  113. package/dist-types/ts3.4/EC2.d.ts +25 -0
  114. package/dist-types/ts3.4/EC2Client.d.ts +7 -2
  115. package/dist-types/ts3.4/commands/DescribeFastLaunchImagesCommand.d.ts +17 -0
  116. package/dist-types/ts3.4/commands/DescribeReservedInstancesCommand.d.ts +2 -1
  117. package/dist-types/ts3.4/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
  118. package/dist-types/ts3.4/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
  119. package/dist-types/ts3.4/commands/DisableFastLaunchCommand.d.ts +17 -0
  120. package/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +17 -0
  121. package/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
  122. package/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
  123. package/dist-types/ts3.4/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
  124. package/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
  125. package/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
  126. package/dist-types/ts3.4/commands/ListImagesInRecycleBinCommand.d.ts +17 -0
  127. package/dist-types/ts3.4/commands/ResetInstanceAttributeCommand.d.ts +1 -1
  128. package/dist-types/ts3.4/commands/ResetNetworkInterfaceAttributeCommand.d.ts +1 -1
  129. package/dist-types/ts3.4/commands/ResetSnapshotAttributeCommand.d.ts +1 -1
  130. package/dist-types/ts3.4/commands/RestoreAddressToClassicCommand.d.ts +1 -1
  131. package/dist-types/ts3.4/commands/RestoreImageFromRecycleBinCommand.d.ts +17 -0
  132. package/dist-types/ts3.4/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
  133. package/dist-types/ts3.4/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
  134. package/dist-types/ts3.4/commands/RestoreSnapshotTierCommand.d.ts +1 -1
  135. package/dist-types/ts3.4/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
  136. package/dist-types/ts3.4/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
  137. package/dist-types/ts3.4/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
  138. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  139. package/dist-types/ts3.4/models/models_0.d.ts +22 -5
  140. package/dist-types/ts3.4/models/models_1.d.ts +5 -2
  141. package/dist-types/ts3.4/models/models_2.d.ts +17 -37
  142. package/dist-types/ts3.4/models/models_3.d.ts +122 -122
  143. package/dist-types/ts3.4/models/models_4.d.ts +224 -194
  144. package/dist-types/ts3.4/models/models_5.d.ts +239 -256
  145. package/dist-types/ts3.4/models/models_6.d.ts +275 -5
  146. package/dist-types/ts3.4/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
  147. package/dist-types/ts3.4/pagination/ListImagesInRecycleBinPaginator.d.ts +4 -0
  148. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  149. package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +15 -0
  150. package/package.json +41 -35
@@ -1,6 +1,42 @@
1
- import { _InstanceType, ActiveInstance, AllocationState, AllowsMultipleInstanceTypes, AlternatePathHint, AnalysisAclRule, AnalysisComponent, AnalysisRouteTableRoute, AnalysisSecurityGroupRule, AttachmentStatus, AttributeValue, AutoPlacement, CurrencyCodeValues, CustomerGateway, DhcpOptions, EgressOnlyInternetGateway, FleetExcessCapacityTerminationPolicy, HostnameType, HostRecovery, IamInstanceProfile, IamInstanceProfileAssociation, InstanceEventWindow, PathComponent, PortRange, ReservedInstancesListing, Tag, Tenancy } from "./models_0";
1
+ import { _InstanceType, ActiveInstance, AllocationState, AllowsMultipleInstanceTypes, AlternatePathHint, AnalysisAclRule, AnalysisComponent, AnalysisRouteTableRoute, AnalysisSecurityGroupRule, AttachmentStatus, AttributeValue, AutoPlacement, CurrencyCodeValues, CustomerGateway, DhcpOptions, EgressOnlyInternetGateway, FleetExcessCapacityTerminationPolicy, HostnameType, HostRecovery, IamInstanceProfile, IamInstanceProfileAssociation, InstanceEventWindow, PathComponent, PortRange, Tag } from "./models_0";
2
2
  import { BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTargetResponse, DefaultTargetCapacityType, DestinationFileFormat, ExportTask, FleetCapacityReservationUsageStrategy, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetType, GroupIdentifier, InstanceIpv6Address, InstanceLifecycle, InternetGateway, Ipam, IpamPool, IpamScope, KeyType, LaunchTemplate, LaunchTemplateAndOverridesResponse, LaunchTemplateVersion, LocalGatewayRouteTableVpcAssociation, LogDestinationType, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, NetworkInterfaceStatus, Placement, PlacementGroup, PlatformValues, ReplaceRootVolumeTask, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, TargetCapacityUnitType, TrafficType } from "./models_1";
3
- import { DiskImageDescription, DiskImageVolumeDescription, Filter, FleetStateCode, IdFormat, ImportInstanceTaskDetails, InstanceTagNotificationAttribute } from "./models_2";
3
+ import { DiskImageDescription, DiskImageVolumeDescription, Filter, FleetStateCode, IdFormat, InstanceTagNotificationAttribute } from "./models_2";
4
+
5
+ export interface ImportInstanceVolumeDetailItem {
6
+
7
+ AvailabilityZone?: string;
8
+
9
+ BytesConverted?: number;
10
+
11
+ Description?: string;
12
+
13
+ Image?: DiskImageDescription;
14
+
15
+ Status?: string;
16
+
17
+ StatusMessage?: string;
18
+
19
+ Volume?: DiskImageVolumeDescription;
20
+ }
21
+ export declare namespace ImportInstanceVolumeDetailItem {
22
+
23
+ const filterSensitiveLog: (obj: ImportInstanceVolumeDetailItem) => any;
24
+ }
25
+
26
+ export interface ImportInstanceTaskDetails {
27
+
28
+ Description?: string;
29
+
30
+ InstanceId?: string;
31
+
32
+ Platform?: PlatformValues | string;
33
+
34
+ Volumes?: ImportInstanceVolumeDetailItem[];
35
+ }
36
+ export declare namespace ImportInstanceTaskDetails {
37
+
38
+ const filterSensitiveLog: (obj: ImportInstanceTaskDetails) => any;
39
+ }
4
40
 
5
41
  export interface ImportVolumeTaskDetails {
6
42
 
@@ -265,6 +301,90 @@ export declare namespace DescribeExportTasksResult {
265
301
 
266
302
  const filterSensitiveLog: (obj: DescribeExportTasksResult) => any;
267
303
  }
304
+ export interface DescribeFastLaunchImagesRequest {
305
+
306
+ ImageIds?: string[];
307
+
308
+ Filters?: Filter[];
309
+
310
+ MaxResults?: number;
311
+
312
+ NextToken?: string;
313
+
314
+ DryRun?: boolean;
315
+ }
316
+ export declare namespace DescribeFastLaunchImagesRequest {
317
+
318
+ const filterSensitiveLog: (obj: DescribeFastLaunchImagesRequest) => any;
319
+ }
320
+
321
+ export interface FastLaunchLaunchTemplateSpecificationResponse {
322
+
323
+ LaunchTemplateId?: string;
324
+
325
+ LaunchTemplateName?: string;
326
+
327
+ Version?: string;
328
+ }
329
+ export declare namespace FastLaunchLaunchTemplateSpecificationResponse {
330
+
331
+ const filterSensitiveLog: (obj: FastLaunchLaunchTemplateSpecificationResponse) => any;
332
+ }
333
+ export declare enum FastLaunchResourceType {
334
+ SNAPSHOT = "snapshot"
335
+ }
336
+
337
+ export interface FastLaunchSnapshotConfigurationResponse {
338
+
339
+ TargetResourceCount?: number;
340
+ }
341
+ export declare namespace FastLaunchSnapshotConfigurationResponse {
342
+
343
+ const filterSensitiveLog: (obj: FastLaunchSnapshotConfigurationResponse) => any;
344
+ }
345
+ export declare enum FastLaunchStateCode {
346
+ disabling = "disabling",
347
+ disabling_failed = "disabling-failed",
348
+ enabled = "enabled",
349
+ enabled_failed = "enabled-failed",
350
+ enabling = "enabling",
351
+ enabling_failed = "enabling-failed"
352
+ }
353
+
354
+ export interface DescribeFastLaunchImagesSuccessItem {
355
+
356
+ ImageId?: string;
357
+
358
+ ResourceType?: FastLaunchResourceType | string;
359
+
360
+ SnapshotConfiguration?: FastLaunchSnapshotConfigurationResponse;
361
+
362
+ LaunchTemplate?: FastLaunchLaunchTemplateSpecificationResponse;
363
+
364
+ MaxParallelLaunches?: number;
365
+
366
+ OwnerId?: string;
367
+
368
+ State?: FastLaunchStateCode | string;
369
+
370
+ StateTransitionReason?: string;
371
+
372
+ StateTransitionTime?: Date;
373
+ }
374
+ export declare namespace DescribeFastLaunchImagesSuccessItem {
375
+
376
+ const filterSensitiveLog: (obj: DescribeFastLaunchImagesSuccessItem) => any;
377
+ }
378
+ export interface DescribeFastLaunchImagesResult {
379
+
380
+ FastLaunchImages?: DescribeFastLaunchImagesSuccessItem[];
381
+
382
+ NextToken?: string;
383
+ }
384
+ export declare namespace DescribeFastLaunchImagesResult {
385
+
386
+ const filterSensitiveLog: (obj: DescribeFastLaunchImagesResult) => any;
387
+ }
268
388
  export interface DescribeFastSnapshotRestoresRequest {
269
389
 
270
390
  Filters?: Filter[];
@@ -3842,123 +3962,3 @@ export declare namespace DescribeReservedInstancesRequest {
3842
3962
  }
3843
3963
  export declare type RIProductDescription = "Linux/UNIX" | "Linux/UNIX (Amazon VPC)" | "Windows" | "Windows (Amazon VPC)";
3844
3964
  export declare type RecurringChargeFrequency = "Hourly";
3845
-
3846
- export interface RecurringCharge {
3847
-
3848
- Amount?: number;
3849
-
3850
- Frequency?: RecurringChargeFrequency | string;
3851
- }
3852
- export declare namespace RecurringCharge {
3853
-
3854
- const filterSensitiveLog: (obj: RecurringCharge) => any;
3855
- }
3856
- export declare enum Scope {
3857
- AVAILABILITY_ZONE = "Availability Zone",
3858
- REGIONAL = "Region"
3859
- }
3860
- export declare type ReservedInstanceState = "active" | "payment-failed" | "payment-pending" | "queued" | "queued-deleted" | "retired";
3861
-
3862
- export interface ReservedInstances {
3863
-
3864
- AvailabilityZone?: string;
3865
-
3866
- Duration?: number;
3867
-
3868
- End?: Date;
3869
-
3870
- FixedPrice?: number;
3871
-
3872
- InstanceCount?: number;
3873
-
3874
- InstanceType?: _InstanceType | string;
3875
-
3876
- ProductDescription?: RIProductDescription | string;
3877
-
3878
- ReservedInstancesId?: string;
3879
-
3880
- Start?: Date;
3881
-
3882
- State?: ReservedInstanceState | string;
3883
-
3884
- UsagePrice?: number;
3885
-
3886
- CurrencyCode?: CurrencyCodeValues | string;
3887
-
3888
- InstanceTenancy?: Tenancy | string;
3889
-
3890
- OfferingClass?: OfferingClassType | string;
3891
-
3892
- OfferingType?: OfferingTypeValues | string;
3893
-
3894
- RecurringCharges?: RecurringCharge[];
3895
-
3896
- Scope?: Scope | string;
3897
-
3898
- Tags?: Tag[];
3899
- }
3900
- export declare namespace ReservedInstances {
3901
-
3902
- const filterSensitiveLog: (obj: ReservedInstances) => any;
3903
- }
3904
-
3905
- export interface DescribeReservedInstancesResult {
3906
-
3907
- ReservedInstances?: ReservedInstances[];
3908
- }
3909
- export declare namespace DescribeReservedInstancesResult {
3910
-
3911
- const filterSensitiveLog: (obj: DescribeReservedInstancesResult) => any;
3912
- }
3913
-
3914
- export interface DescribeReservedInstancesListingsRequest {
3915
-
3916
- Filters?: Filter[];
3917
-
3918
- ReservedInstancesId?: string;
3919
-
3920
- ReservedInstancesListingId?: string;
3921
- }
3922
- export declare namespace DescribeReservedInstancesListingsRequest {
3923
-
3924
- const filterSensitiveLog: (obj: DescribeReservedInstancesListingsRequest) => any;
3925
- }
3926
-
3927
- export interface DescribeReservedInstancesListingsResult {
3928
-
3929
- ReservedInstancesListings?: ReservedInstancesListing[];
3930
- }
3931
- export declare namespace DescribeReservedInstancesListingsResult {
3932
-
3933
- const filterSensitiveLog: (obj: DescribeReservedInstancesListingsResult) => any;
3934
- }
3935
-
3936
- export interface DescribeReservedInstancesModificationsRequest {
3937
-
3938
- Filters?: Filter[];
3939
-
3940
- ReservedInstancesModificationIds?: string[];
3941
-
3942
- NextToken?: string;
3943
- }
3944
- export declare namespace DescribeReservedInstancesModificationsRequest {
3945
-
3946
- const filterSensitiveLog: (obj: DescribeReservedInstancesModificationsRequest) => any;
3947
- }
3948
-
3949
- export interface ReservedInstancesConfiguration {
3950
-
3951
- AvailabilityZone?: string;
3952
-
3953
- InstanceCount?: number;
3954
-
3955
- InstanceType?: _InstanceType | string;
3956
-
3957
- Platform?: string;
3958
-
3959
- Scope?: Scope | string;
3960
- }
3961
- export declare namespace ReservedInstancesConfiguration {
3962
-
3963
- const filterSensitiveLog: (obj: ReservedInstancesConfiguration) => any;
3964
- }
@@ -1,7 +1,127 @@
1
- import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AllowedPrincipal, AssociationStatus, BatchState, CapacityReservationState, CurrencyCodeValues, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpamPoolAllocation, IpPermission, ResourceType, SecurityGroupRule, Subnet, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, Tenancy, TransitGatewayAssociation, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, Vpc, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
2
- import { BlockDeviceMapping, DiskImageFormat, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InstanceRequirementsRequest, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, PrivateIpAddressSpecification, RequestIpamResourceTag, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, SpotInstanceType, StorageTier, TargetCapacityUnitType, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
3
- import { ConnectionNotification, DnsEntry, DnsNameState, Filter, IpamPoolCidr, PayerResponsibility, ServiceConfiguration, ServiceTypeDetail, State, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayRouteTable, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
4
- import { ArchitectureType, AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastSnapshotRestoreStateCode, OfferingClassType, OfferingTypeValues, PaymentOption, PermissionGroup, ProductCode, RecurringCharge, ReservedInstancesConfiguration, RIProductDescription, Scope, VirtualizationType } from "./models_3";
1
+ import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AllowedPrincipal, AssociationStatus, BatchState, CapacityReservationState, CurrencyCodeValues, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpPermission, ReservedInstancesListing, ResourceType, SecurityGroupRule, Subnet, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, Tenancy, TransitGatewayAssociation, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, Vpc, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
2
+ import { BlockDeviceMapping, DiskImageFormat, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InstanceRequirementsRequest, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, PrivateIpAddressSpecification, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, SpotInstanceType, StorageTier, TargetCapacityUnitType, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
3
+ import { ConnectionNotification, DnsEntry, DnsNameState, Filter, PayerResponsibility, ServiceConfiguration, ServiceTypeDetail, State, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayRouteTable, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
4
+ import { ArchitectureType, AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchResourceType, FastLaunchSnapshotConfigurationResponse, FastLaunchStateCode, FastSnapshotRestoreStateCode, OfferingClassType, OfferingTypeValues, PaymentOption, PermissionGroup, ProductCode, RecurringChargeFrequency, RIProductDescription, VirtualizationType } from "./models_3";
5
+
6
+ export interface RecurringCharge {
7
+
8
+ Amount?: number;
9
+
10
+ Frequency?: RecurringChargeFrequency | string;
11
+ }
12
+ export declare namespace RecurringCharge {
13
+
14
+ const filterSensitiveLog: (obj: RecurringCharge) => any;
15
+ }
16
+ export declare enum Scope {
17
+ AVAILABILITY_ZONE = "Availability Zone",
18
+ REGIONAL = "Region"
19
+ }
20
+ export declare type ReservedInstanceState = "active" | "payment-failed" | "payment-pending" | "queued" | "queued-deleted" | "retired";
21
+
22
+ export interface ReservedInstances {
23
+
24
+ AvailabilityZone?: string;
25
+
26
+ Duration?: number;
27
+
28
+ End?: Date;
29
+
30
+ FixedPrice?: number;
31
+
32
+ InstanceCount?: number;
33
+
34
+ InstanceType?: _InstanceType | string;
35
+
36
+ ProductDescription?: RIProductDescription | string;
37
+
38
+ ReservedInstancesId?: string;
39
+
40
+ Start?: Date;
41
+
42
+ State?: ReservedInstanceState | string;
43
+
44
+ UsagePrice?: number;
45
+
46
+ CurrencyCode?: CurrencyCodeValues | string;
47
+
48
+ InstanceTenancy?: Tenancy | string;
49
+
50
+ OfferingClass?: OfferingClassType | string;
51
+
52
+ OfferingType?: OfferingTypeValues | string;
53
+
54
+ RecurringCharges?: RecurringCharge[];
55
+
56
+ Scope?: Scope | string;
57
+
58
+ Tags?: Tag[];
59
+ }
60
+ export declare namespace ReservedInstances {
61
+
62
+ const filterSensitiveLog: (obj: ReservedInstances) => any;
63
+ }
64
+
65
+ export interface DescribeReservedInstancesResult {
66
+
67
+ ReservedInstances?: ReservedInstances[];
68
+ }
69
+ export declare namespace DescribeReservedInstancesResult {
70
+
71
+ const filterSensitiveLog: (obj: DescribeReservedInstancesResult) => any;
72
+ }
73
+
74
+ export interface DescribeReservedInstancesListingsRequest {
75
+
76
+ Filters?: Filter[];
77
+
78
+ ReservedInstancesId?: string;
79
+
80
+ ReservedInstancesListingId?: string;
81
+ }
82
+ export declare namespace DescribeReservedInstancesListingsRequest {
83
+
84
+ const filterSensitiveLog: (obj: DescribeReservedInstancesListingsRequest) => any;
85
+ }
86
+
87
+ export interface DescribeReservedInstancesListingsResult {
88
+
89
+ ReservedInstancesListings?: ReservedInstancesListing[];
90
+ }
91
+ export declare namespace DescribeReservedInstancesListingsResult {
92
+
93
+ const filterSensitiveLog: (obj: DescribeReservedInstancesListingsResult) => any;
94
+ }
95
+
96
+ export interface DescribeReservedInstancesModificationsRequest {
97
+
98
+ Filters?: Filter[];
99
+
100
+ ReservedInstancesModificationIds?: string[];
101
+
102
+ NextToken?: string;
103
+ }
104
+ export declare namespace DescribeReservedInstancesModificationsRequest {
105
+
106
+ const filterSensitiveLog: (obj: DescribeReservedInstancesModificationsRequest) => any;
107
+ }
108
+
109
+ export interface ReservedInstancesConfiguration {
110
+
111
+ AvailabilityZone?: string;
112
+
113
+ InstanceCount?: number;
114
+
115
+ InstanceType?: _InstanceType | string;
116
+
117
+ Platform?: string;
118
+
119
+ Scope?: Scope | string;
120
+ }
121
+ export declare namespace ReservedInstancesConfiguration {
122
+
123
+ const filterSensitiveLog: (obj: ReservedInstancesConfiguration) => any;
124
+ }
5
125
 
6
126
  export interface ReservedInstancesModificationResult {
7
127
 
@@ -2497,6 +2617,42 @@ export declare namespace DisableEbsEncryptionByDefaultResult {
2497
2617
 
2498
2618
  const filterSensitiveLog: (obj: DisableEbsEncryptionByDefaultResult) => any;
2499
2619
  }
2620
+ export interface DisableFastLaunchRequest {
2621
+
2622
+ ImageId: string | undefined;
2623
+
2624
+ Force?: boolean;
2625
+
2626
+ DryRun?: boolean;
2627
+ }
2628
+ export declare namespace DisableFastLaunchRequest {
2629
+
2630
+ const filterSensitiveLog: (obj: DisableFastLaunchRequest) => any;
2631
+ }
2632
+ export interface DisableFastLaunchResult {
2633
+
2634
+ ImageId?: string;
2635
+
2636
+ ResourceType?: FastLaunchResourceType | string;
2637
+
2638
+ SnapshotConfiguration?: FastLaunchSnapshotConfigurationResponse;
2639
+
2640
+ LaunchTemplate?: FastLaunchLaunchTemplateSpecificationResponse;
2641
+
2642
+ MaxParallelLaunches?: number;
2643
+
2644
+ OwnerId?: string;
2645
+
2646
+ State?: FastLaunchStateCode | string;
2647
+
2648
+ StateTransitionReason?: string;
2649
+
2650
+ StateTransitionTime?: Date;
2651
+ }
2652
+ export declare namespace DisableFastLaunchResult {
2653
+
2654
+ const filterSensitiveLog: (obj: DisableFastLaunchResult) => any;
2655
+ }
2500
2656
  export interface DisableFastSnapshotRestoresRequest {
2501
2657
 
2502
2658
  AvailabilityZones: string[] | undefined;
@@ -2949,6 +3105,70 @@ export declare namespace EnableEbsEncryptionByDefaultResult {
2949
3105
 
2950
3106
  const filterSensitiveLog: (obj: EnableEbsEncryptionByDefaultResult) => any;
2951
3107
  }
3108
+
3109
+ export interface FastLaunchLaunchTemplateSpecificationRequest {
3110
+
3111
+ LaunchTemplateId?: string;
3112
+
3113
+ LaunchTemplateName?: string;
3114
+
3115
+ Version: string | undefined;
3116
+ }
3117
+ export declare namespace FastLaunchLaunchTemplateSpecificationRequest {
3118
+
3119
+ const filterSensitiveLog: (obj: FastLaunchLaunchTemplateSpecificationRequest) => any;
3120
+ }
3121
+
3122
+ export interface FastLaunchSnapshotConfigurationRequest {
3123
+
3124
+ TargetResourceCount?: number;
3125
+ }
3126
+ export declare namespace FastLaunchSnapshotConfigurationRequest {
3127
+
3128
+ const filterSensitiveLog: (obj: FastLaunchSnapshotConfigurationRequest) => any;
3129
+ }
3130
+ export interface EnableFastLaunchRequest {
3131
+
3132
+ ImageId: string | undefined;
3133
+
3134
+ ResourceType?: string;
3135
+
3136
+ SnapshotConfiguration?: FastLaunchSnapshotConfigurationRequest;
3137
+
3138
+ LaunchTemplate?: FastLaunchLaunchTemplateSpecificationRequest;
3139
+
3140
+ MaxParallelLaunches?: number;
3141
+
3142
+ DryRun?: boolean;
3143
+ }
3144
+ export declare namespace EnableFastLaunchRequest {
3145
+
3146
+ const filterSensitiveLog: (obj: EnableFastLaunchRequest) => any;
3147
+ }
3148
+ export interface EnableFastLaunchResult {
3149
+
3150
+ ImageId?: string;
3151
+
3152
+ ResourceType?: FastLaunchResourceType | string;
3153
+
3154
+ SnapshotConfiguration?: FastLaunchSnapshotConfigurationResponse;
3155
+
3156
+ LaunchTemplate?: FastLaunchLaunchTemplateSpecificationResponse;
3157
+
3158
+ MaxParallelLaunches?: number;
3159
+
3160
+ OwnerId?: string;
3161
+
3162
+ State?: FastLaunchStateCode | string;
3163
+
3164
+ StateTransitionReason?: string;
3165
+
3166
+ StateTransitionTime?: Date;
3167
+ }
3168
+ export declare namespace EnableFastLaunchResult {
3169
+
3170
+ const filterSensitiveLog: (obj: EnableFastLaunchResult) => any;
3171
+ }
2952
3172
  export interface EnableFastSnapshotRestoresRequest {
2953
3173
 
2954
3174
  AvailabilityZones: string[] | undefined;
@@ -3711,193 +3931,3 @@ export declare namespace GetInstanceTypesFromInstanceRequirementsRequest {
3711
3931
 
3712
3932
  const filterSensitiveLog: (obj: GetInstanceTypesFromInstanceRequirementsRequest) => any;
3713
3933
  }
3714
-
3715
- export interface InstanceTypeInfoFromInstanceRequirements {
3716
-
3717
- InstanceType?: string;
3718
- }
3719
- export declare namespace InstanceTypeInfoFromInstanceRequirements {
3720
-
3721
- const filterSensitiveLog: (obj: InstanceTypeInfoFromInstanceRequirements) => any;
3722
- }
3723
- export interface GetInstanceTypesFromInstanceRequirementsResult {
3724
-
3725
- InstanceTypes?: InstanceTypeInfoFromInstanceRequirements[];
3726
-
3727
- NextToken?: string;
3728
- }
3729
- export declare namespace GetInstanceTypesFromInstanceRequirementsResult {
3730
-
3731
- const filterSensitiveLog: (obj: GetInstanceTypesFromInstanceRequirementsResult) => any;
3732
- }
3733
- export interface GetIpamAddressHistoryRequest {
3734
-
3735
- DryRun?: boolean;
3736
-
3737
- Cidr: string | undefined;
3738
-
3739
- IpamScopeId: string | undefined;
3740
-
3741
- VpcId?: string;
3742
-
3743
- StartTime?: Date;
3744
-
3745
- EndTime?: Date;
3746
-
3747
- MaxResults?: number;
3748
-
3749
- NextToken?: string;
3750
- }
3751
- export declare namespace GetIpamAddressHistoryRequest {
3752
-
3753
- const filterSensitiveLog: (obj: GetIpamAddressHistoryRequest) => any;
3754
- }
3755
- export declare enum IpamComplianceStatus {
3756
- compliant = "compliant",
3757
- ignored = "ignored",
3758
- noncompliant = "noncompliant",
3759
- unmanaged = "unmanaged"
3760
- }
3761
- export declare enum IpamOverlapStatus {
3762
- ignored = "ignored",
3763
- nonoverlapping = "nonoverlapping",
3764
- overlapping = "overlapping"
3765
- }
3766
- export declare enum IpamAddressHistoryResourceType {
3767
- eip = "eip",
3768
- instance = "instance",
3769
- network_interface = "network-interface",
3770
- subnet = "subnet",
3771
- vpc = "vpc"
3772
- }
3773
-
3774
- export interface IpamAddressHistoryRecord {
3775
-
3776
- ResourceOwnerId?: string;
3777
-
3778
- ResourceRegion?: string;
3779
-
3780
- ResourceType?: IpamAddressHistoryResourceType | string;
3781
-
3782
- ResourceId?: string;
3783
-
3784
- ResourceCidr?: string;
3785
-
3786
- ResourceName?: string;
3787
-
3788
- ResourceComplianceStatus?: IpamComplianceStatus | string;
3789
-
3790
- ResourceOverlapStatus?: IpamOverlapStatus | string;
3791
-
3792
- VpcId?: string;
3793
-
3794
- SampledStartTime?: Date;
3795
-
3796
- SampledEndTime?: Date;
3797
- }
3798
- export declare namespace IpamAddressHistoryRecord {
3799
-
3800
- const filterSensitiveLog: (obj: IpamAddressHistoryRecord) => any;
3801
- }
3802
- export interface GetIpamAddressHistoryResult {
3803
-
3804
- HistoryRecords?: IpamAddressHistoryRecord[];
3805
-
3806
- NextToken?: string;
3807
- }
3808
- export declare namespace GetIpamAddressHistoryResult {
3809
-
3810
- const filterSensitiveLog: (obj: GetIpamAddressHistoryResult) => any;
3811
- }
3812
- export interface GetIpamPoolAllocationsRequest {
3813
-
3814
- DryRun?: boolean;
3815
-
3816
- IpamPoolId: string | undefined;
3817
-
3818
- IpamPoolAllocationId?: string;
3819
-
3820
- Filters?: Filter[];
3821
-
3822
- MaxResults?: number;
3823
-
3824
- NextToken?: string;
3825
- }
3826
- export declare namespace GetIpamPoolAllocationsRequest {
3827
-
3828
- const filterSensitiveLog: (obj: GetIpamPoolAllocationsRequest) => any;
3829
- }
3830
- export interface GetIpamPoolAllocationsResult {
3831
-
3832
- IpamPoolAllocations?: IpamPoolAllocation[];
3833
-
3834
- NextToken?: string;
3835
- }
3836
- export declare namespace GetIpamPoolAllocationsResult {
3837
-
3838
- const filterSensitiveLog: (obj: GetIpamPoolAllocationsResult) => any;
3839
- }
3840
- export interface GetIpamPoolCidrsRequest {
3841
-
3842
- DryRun?: boolean;
3843
-
3844
- IpamPoolId: string | undefined;
3845
-
3846
- Filters?: Filter[];
3847
-
3848
- MaxResults?: number;
3849
-
3850
- NextToken?: string;
3851
- }
3852
- export declare namespace GetIpamPoolCidrsRequest {
3853
-
3854
- const filterSensitiveLog: (obj: GetIpamPoolCidrsRequest) => any;
3855
- }
3856
- export interface GetIpamPoolCidrsResult {
3857
-
3858
- IpamPoolCidrs?: IpamPoolCidr[];
3859
-
3860
- NextToken?: string;
3861
- }
3862
- export declare namespace GetIpamPoolCidrsResult {
3863
-
3864
- const filterSensitiveLog: (obj: GetIpamPoolCidrsResult) => any;
3865
- }
3866
- export declare enum IpamResourceType {
3867
- eip = "eip",
3868
- ipv6_pool = "ipv6-pool",
3869
- public_ipv4_pool = "public-ipv4-pool",
3870
- subnet = "subnet",
3871
- vpc = "vpc"
3872
- }
3873
- export interface GetIpamResourceCidrsRequest {
3874
-
3875
- DryRun?: boolean;
3876
-
3877
- Filters?: Filter[];
3878
-
3879
- MaxResults?: number;
3880
-
3881
- NextToken?: string;
3882
-
3883
- IpamScopeId: string | undefined;
3884
-
3885
- IpamPoolId?: string;
3886
-
3887
- ResourceId?: string;
3888
-
3889
- ResourceType?: IpamResourceType | string;
3890
-
3891
- ResourceTag?: RequestIpamResourceTag;
3892
-
3893
- ResourceOwner?: string;
3894
- }
3895
- export declare namespace GetIpamResourceCidrsRequest {
3896
-
3897
- const filterSensitiveLog: (obj: GetIpamResourceCidrsRequest) => any;
3898
- }
3899
- export declare enum IpamManagementState {
3900
- ignored = "ignored",
3901
- managed = "managed",
3902
- unmanaged = "unmanaged"
3903
- }