@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
package/dist-es/EC2.js CHANGED
@@ -209,6 +209,7 @@ import { DescribeEgressOnlyInternetGatewaysCommand, } from "./commands/DescribeE
209
209
  import { DescribeElasticGpusCommand, } from "./commands/DescribeElasticGpusCommand";
210
210
  import { DescribeExportImageTasksCommand, } from "./commands/DescribeExportImageTasksCommand";
211
211
  import { DescribeExportTasksCommand, } from "./commands/DescribeExportTasksCommand";
212
+ import { DescribeFastLaunchImagesCommand, } from "./commands/DescribeFastLaunchImagesCommand";
212
213
  import { DescribeFastSnapshotRestoresCommand, } from "./commands/DescribeFastSnapshotRestoresCommand";
213
214
  import { DescribeFleetHistoryCommand, } from "./commands/DescribeFleetHistoryCommand";
214
215
  import { DescribeFleetInstancesCommand, } from "./commands/DescribeFleetInstancesCommand";
@@ -323,6 +324,7 @@ import { DetachNetworkInterfaceCommand, } from "./commands/DetachNetworkInterfac
323
324
  import { DetachVolumeCommand, } from "./commands/DetachVolumeCommand";
324
325
  import { DetachVpnGatewayCommand, } from "./commands/DetachVpnGatewayCommand";
325
326
  import { DisableEbsEncryptionByDefaultCommand, } from "./commands/DisableEbsEncryptionByDefaultCommand";
327
+ import { DisableFastLaunchCommand, } from "./commands/DisableFastLaunchCommand";
326
328
  import { DisableFastSnapshotRestoresCommand, } from "./commands/DisableFastSnapshotRestoresCommand";
327
329
  import { DisableImageDeprecationCommand, } from "./commands/DisableImageDeprecationCommand";
328
330
  import { DisableIpamOrganizationAdminAccountCommand, } from "./commands/DisableIpamOrganizationAdminAccountCommand";
@@ -343,6 +345,7 @@ import { DisassociateTransitGatewayRouteTableCommand, } from "./commands/Disasso
343
345
  import { DisassociateTrunkInterfaceCommand, } from "./commands/DisassociateTrunkInterfaceCommand";
344
346
  import { DisassociateVpcCidrBlockCommand, } from "./commands/DisassociateVpcCidrBlockCommand";
345
347
  import { EnableEbsEncryptionByDefaultCommand, } from "./commands/EnableEbsEncryptionByDefaultCommand";
348
+ import { EnableFastLaunchCommand, } from "./commands/EnableFastLaunchCommand";
346
349
  import { EnableFastSnapshotRestoresCommand, } from "./commands/EnableFastSnapshotRestoresCommand";
347
350
  import { EnableImageDeprecationCommand, } from "./commands/EnableImageDeprecationCommand";
348
351
  import { EnableIpamOrganizationAdminAccountCommand, } from "./commands/EnableIpamOrganizationAdminAccountCommand";
@@ -396,6 +399,7 @@ import { ImportInstanceCommand, } from "./commands/ImportInstanceCommand";
396
399
  import { ImportKeyPairCommand, } from "./commands/ImportKeyPairCommand";
397
400
  import { ImportSnapshotCommand, } from "./commands/ImportSnapshotCommand";
398
401
  import { ImportVolumeCommand, } from "./commands/ImportVolumeCommand";
402
+ import { ListImagesInRecycleBinCommand, } from "./commands/ListImagesInRecycleBinCommand";
399
403
  import { ListSnapshotsInRecycleBinCommand, } from "./commands/ListSnapshotsInRecycleBinCommand";
400
404
  import { ModifyAddressAttributeCommand, } from "./commands/ModifyAddressAttributeCommand";
401
405
  import { ModifyAvailabilityZoneGroupCommand, } from "./commands/ModifyAvailabilityZoneGroupCommand";
@@ -490,6 +494,7 @@ import { ResetInstanceAttributeCommand, } from "./commands/ResetInstanceAttribut
490
494
  import { ResetNetworkInterfaceAttributeCommand, } from "./commands/ResetNetworkInterfaceAttributeCommand";
491
495
  import { ResetSnapshotAttributeCommand, } from "./commands/ResetSnapshotAttributeCommand";
492
496
  import { RestoreAddressToClassicCommand, } from "./commands/RestoreAddressToClassicCommand";
497
+ import { RestoreImageFromRecycleBinCommand, } from "./commands/RestoreImageFromRecycleBinCommand";
493
498
  import { RestoreManagedPrefixListVersionCommand, } from "./commands/RestoreManagedPrefixListVersionCommand";
494
499
  import { RestoreSnapshotFromRecycleBinCommand, } from "./commands/RestoreSnapshotFromRecycleBinCommand";
495
500
  import { RestoreSnapshotTierCommand, } from "./commands/RestoreSnapshotTierCommand";
@@ -3461,6 +3466,20 @@ var EC2 = (function (_super) {
3461
3466
  return this.send(command, optionsOrCb);
3462
3467
  }
3463
3468
  };
3469
+ EC2.prototype.describeFastLaunchImages = function (args, optionsOrCb, cb) {
3470
+ var command = new DescribeFastLaunchImagesCommand(args);
3471
+ if (typeof optionsOrCb === "function") {
3472
+ this.send(command, optionsOrCb);
3473
+ }
3474
+ else if (typeof cb === "function") {
3475
+ if (typeof optionsOrCb !== "object")
3476
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
3477
+ this.send(command, optionsOrCb || {}, cb);
3478
+ }
3479
+ else {
3480
+ return this.send(command, optionsOrCb);
3481
+ }
3482
+ };
3464
3483
  EC2.prototype.describeFastSnapshotRestores = function (args, optionsOrCb, cb) {
3465
3484
  var command = new DescribeFastSnapshotRestoresCommand(args);
3466
3485
  if (typeof optionsOrCb === "function") {
@@ -5057,6 +5076,20 @@ var EC2 = (function (_super) {
5057
5076
  return this.send(command, optionsOrCb);
5058
5077
  }
5059
5078
  };
5079
+ EC2.prototype.disableFastLaunch = function (args, optionsOrCb, cb) {
5080
+ var command = new DisableFastLaunchCommand(args);
5081
+ if (typeof optionsOrCb === "function") {
5082
+ this.send(command, optionsOrCb);
5083
+ }
5084
+ else if (typeof cb === "function") {
5085
+ if (typeof optionsOrCb !== "object")
5086
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
5087
+ this.send(command, optionsOrCb || {}, cb);
5088
+ }
5089
+ else {
5090
+ return this.send(command, optionsOrCb);
5091
+ }
5092
+ };
5060
5093
  EC2.prototype.disableFastSnapshotRestores = function (args, optionsOrCb, cb) {
5061
5094
  var command = new DisableFastSnapshotRestoresCommand(args);
5062
5095
  if (typeof optionsOrCb === "function") {
@@ -5337,6 +5370,20 @@ var EC2 = (function (_super) {
5337
5370
  return this.send(command, optionsOrCb);
5338
5371
  }
5339
5372
  };
5373
+ EC2.prototype.enableFastLaunch = function (args, optionsOrCb, cb) {
5374
+ var command = new EnableFastLaunchCommand(args);
5375
+ if (typeof optionsOrCb === "function") {
5376
+ this.send(command, optionsOrCb);
5377
+ }
5378
+ else if (typeof cb === "function") {
5379
+ if (typeof optionsOrCb !== "object")
5380
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
5381
+ this.send(command, optionsOrCb || {}, cb);
5382
+ }
5383
+ else {
5384
+ return this.send(command, optionsOrCb);
5385
+ }
5386
+ };
5340
5387
  EC2.prototype.enableFastSnapshotRestores = function (args, optionsOrCb, cb) {
5341
5388
  var command = new EnableFastSnapshotRestoresCommand(args);
5342
5389
  if (typeof optionsOrCb === "function") {
@@ -6079,6 +6126,20 @@ var EC2 = (function (_super) {
6079
6126
  return this.send(command, optionsOrCb);
6080
6127
  }
6081
6128
  };
6129
+ EC2.prototype.listImagesInRecycleBin = function (args, optionsOrCb, cb) {
6130
+ var command = new ListImagesInRecycleBinCommand(args);
6131
+ if (typeof optionsOrCb === "function") {
6132
+ this.send(command, optionsOrCb);
6133
+ }
6134
+ else if (typeof cb === "function") {
6135
+ if (typeof optionsOrCb !== "object")
6136
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
6137
+ this.send(command, optionsOrCb || {}, cb);
6138
+ }
6139
+ else {
6140
+ return this.send(command, optionsOrCb);
6141
+ }
6142
+ };
6082
6143
  EC2.prototype.listSnapshotsInRecycleBin = function (args, optionsOrCb, cb) {
6083
6144
  var command = new ListSnapshotsInRecycleBinCommand(args);
6084
6145
  if (typeof optionsOrCb === "function") {
@@ -7395,6 +7456,20 @@ var EC2 = (function (_super) {
7395
7456
  return this.send(command, optionsOrCb);
7396
7457
  }
7397
7458
  };
7459
+ EC2.prototype.restoreImageFromRecycleBin = function (args, optionsOrCb, cb) {
7460
+ var command = new RestoreImageFromRecycleBinCommand(args);
7461
+ if (typeof optionsOrCb === "function") {
7462
+ this.send(command, optionsOrCb);
7463
+ }
7464
+ else if (typeof cb === "function") {
7465
+ if (typeof optionsOrCb !== "object")
7466
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
7467
+ this.send(command, optionsOrCb || {}, cb);
7468
+ }
7469
+ else {
7470
+ return this.send(command, optionsOrCb);
7471
+ }
7472
+ };
7398
7473
  EC2.prototype.restoreManagedPrefixListVersion = function (args, optionsOrCb, cb) {
7399
7474
  var command = new RestoreManagedPrefixListVersionCommand(args);
7400
7475
  if (typeof optionsOrCb === "function") {
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { DescribeFastLaunchImagesRequest, DescribeFastLaunchImagesResult } from "../models/models_3";
5
+ import { deserializeAws_ec2DescribeFastLaunchImagesCommand, serializeAws_ec2DescribeFastLaunchImagesCommand, } from "../protocols/Aws_ec2";
6
+ var DescribeFastLaunchImagesCommand = (function (_super) {
7
+ __extends(DescribeFastLaunchImagesCommand, _super);
8
+ function DescribeFastLaunchImagesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ DescribeFastLaunchImagesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EC2Client";
18
+ var commandName = "DescribeFastLaunchImagesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: DescribeFastLaunchImagesRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: DescribeFastLaunchImagesResult.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DescribeFastLaunchImagesCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_ec2DescribeFastLaunchImagesCommand(input, context);
33
+ };
34
+ DescribeFastLaunchImagesCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_ec2DescribeFastLaunchImagesCommand(output, context);
36
+ };
37
+ return DescribeFastLaunchImagesCommand;
38
+ }($Command));
39
+ export { DescribeFastLaunchImagesCommand };
@@ -1,7 +1,8 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { DescribeReservedInstancesRequest, DescribeReservedInstancesResult } from "../models/models_3";
4
+ import { DescribeReservedInstancesRequest } from "../models/models_3";
5
+ import { DescribeReservedInstancesResult } from "../models/models_4";
5
6
  import { deserializeAws_ec2DescribeReservedInstancesCommand, serializeAws_ec2DescribeReservedInstancesCommand, } from "../protocols/Aws_ec2";
6
7
  var DescribeReservedInstancesCommand = (function (_super) {
7
8
  __extends(DescribeReservedInstancesCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { DescribeReservedInstancesListingsRequest, DescribeReservedInstancesListingsResult } from "../models/models_3";
4
+ import { DescribeReservedInstancesListingsRequest, DescribeReservedInstancesListingsResult } from "../models/models_4";
5
5
  import { deserializeAws_ec2DescribeReservedInstancesListingsCommand, serializeAws_ec2DescribeReservedInstancesListingsCommand, } from "../protocols/Aws_ec2";
6
6
  var DescribeReservedInstancesListingsCommand = (function (_super) {
7
7
  __extends(DescribeReservedInstancesListingsCommand, _super);
@@ -1,8 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { DescribeReservedInstancesModificationsRequest } from "../models/models_3";
5
- import { DescribeReservedInstancesModificationsResult } from "../models/models_4";
4
+ import { DescribeReservedInstancesModificationsRequest, DescribeReservedInstancesModificationsResult, } from "../models/models_4";
6
5
  import { deserializeAws_ec2DescribeReservedInstancesModificationsCommand, serializeAws_ec2DescribeReservedInstancesModificationsCommand, } from "../protocols/Aws_ec2";
7
6
  var DescribeReservedInstancesModificationsCommand = (function (_super) {
8
7
  __extends(DescribeReservedInstancesModificationsCommand, _super);
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { DisableFastLaunchRequest, DisableFastLaunchResult } from "../models/models_4";
5
+ import { deserializeAws_ec2DisableFastLaunchCommand, serializeAws_ec2DisableFastLaunchCommand, } from "../protocols/Aws_ec2";
6
+ var DisableFastLaunchCommand = (function (_super) {
7
+ __extends(DisableFastLaunchCommand, _super);
8
+ function DisableFastLaunchCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ DisableFastLaunchCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EC2Client";
18
+ var commandName = "DisableFastLaunchCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: DisableFastLaunchRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: DisableFastLaunchResult.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DisableFastLaunchCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_ec2DisableFastLaunchCommand(input, context);
33
+ };
34
+ DisableFastLaunchCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_ec2DisableFastLaunchCommand(output, context);
36
+ };
37
+ return DisableFastLaunchCommand;
38
+ }($Command));
39
+ export { DisableFastLaunchCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { EnableFastLaunchRequest, EnableFastLaunchResult } from "../models/models_4";
5
+ import { deserializeAws_ec2EnableFastLaunchCommand, serializeAws_ec2EnableFastLaunchCommand, } from "../protocols/Aws_ec2";
6
+ var EnableFastLaunchCommand = (function (_super) {
7
+ __extends(EnableFastLaunchCommand, _super);
8
+ function EnableFastLaunchCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ EnableFastLaunchCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EC2Client";
18
+ var commandName = "EnableFastLaunchCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: EnableFastLaunchRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: EnableFastLaunchResult.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ EnableFastLaunchCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_ec2EnableFastLaunchCommand(input, context);
33
+ };
34
+ EnableFastLaunchCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_ec2EnableFastLaunchCommand(output, context);
36
+ };
37
+ return EnableFastLaunchCommand;
38
+ }($Command));
39
+ export { EnableFastLaunchCommand };
@@ -1,7 +1,8 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { GetInstanceTypesFromInstanceRequirementsRequest, GetInstanceTypesFromInstanceRequirementsResult, } from "../models/models_4";
4
+ import { GetInstanceTypesFromInstanceRequirementsRequest } from "../models/models_4";
5
+ import { GetInstanceTypesFromInstanceRequirementsResult } from "../models/models_5";
5
6
  import { deserializeAws_ec2GetInstanceTypesFromInstanceRequirementsCommand, serializeAws_ec2GetInstanceTypesFromInstanceRequirementsCommand, } from "../protocols/Aws_ec2";
6
7
  var GetInstanceTypesFromInstanceRequirementsCommand = (function (_super) {
7
8
  __extends(GetInstanceTypesFromInstanceRequirementsCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { GetIpamAddressHistoryRequest, GetIpamAddressHistoryResult } from "../models/models_4";
4
+ import { GetIpamAddressHistoryRequest, GetIpamAddressHistoryResult } from "../models/models_5";
5
5
  import { deserializeAws_ec2GetIpamAddressHistoryCommand, serializeAws_ec2GetIpamAddressHistoryCommand, } from "../protocols/Aws_ec2";
6
6
  var GetIpamAddressHistoryCommand = (function (_super) {
7
7
  __extends(GetIpamAddressHistoryCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { GetIpamPoolAllocationsRequest, GetIpamPoolAllocationsResult } from "../models/models_4";
4
+ import { GetIpamPoolAllocationsRequest, GetIpamPoolAllocationsResult } from "../models/models_5";
5
5
  import { deserializeAws_ec2GetIpamPoolAllocationsCommand, serializeAws_ec2GetIpamPoolAllocationsCommand, } from "../protocols/Aws_ec2";
6
6
  var GetIpamPoolAllocationsCommand = (function (_super) {
7
7
  __extends(GetIpamPoolAllocationsCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { GetIpamPoolCidrsRequest, GetIpamPoolCidrsResult } from "../models/models_4";
4
+ import { GetIpamPoolCidrsRequest, GetIpamPoolCidrsResult } from "../models/models_5";
5
5
  import { deserializeAws_ec2GetIpamPoolCidrsCommand, serializeAws_ec2GetIpamPoolCidrsCommand, } from "../protocols/Aws_ec2";
6
6
  var GetIpamPoolCidrsCommand = (function (_super) {
7
7
  __extends(GetIpamPoolCidrsCommand, _super);
@@ -1,8 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { GetIpamResourceCidrsRequest } from "../models/models_4";
5
- import { GetIpamResourceCidrsResult } from "../models/models_5";
4
+ import { GetIpamResourceCidrsRequest, GetIpamResourceCidrsResult } from "../models/models_5";
6
5
  import { deserializeAws_ec2GetIpamResourceCidrsCommand, serializeAws_ec2GetIpamResourceCidrsCommand, } from "../protocols/Aws_ec2";
7
6
  var GetIpamResourceCidrsCommand = (function (_super) {
8
7
  __extends(GetIpamResourceCidrsCommand, _super);
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListImagesInRecycleBinRequest, ListImagesInRecycleBinResult } from "../models/models_5";
5
+ import { deserializeAws_ec2ListImagesInRecycleBinCommand, serializeAws_ec2ListImagesInRecycleBinCommand, } from "../protocols/Aws_ec2";
6
+ var ListImagesInRecycleBinCommand = (function (_super) {
7
+ __extends(ListImagesInRecycleBinCommand, _super);
8
+ function ListImagesInRecycleBinCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListImagesInRecycleBinCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EC2Client";
18
+ var commandName = "ListImagesInRecycleBinCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListImagesInRecycleBinRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListImagesInRecycleBinResult.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListImagesInRecycleBinCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_ec2ListImagesInRecycleBinCommand(input, context);
33
+ };
34
+ ListImagesInRecycleBinCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_ec2ListImagesInRecycleBinCommand(output, context);
36
+ };
37
+ return ListImagesInRecycleBinCommand;
38
+ }($Command));
39
+ export { ListImagesInRecycleBinCommand };
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ResetInstanceAttributeRequest } from "../models/models_5";
4
+ import { ResetInstanceAttributeRequest } from "../models/models_6";
5
5
  import { deserializeAws_ec2ResetInstanceAttributeCommand, serializeAws_ec2ResetInstanceAttributeCommand, } from "../protocols/Aws_ec2";
6
6
  var ResetInstanceAttributeCommand = (function (_super) {
7
7
  __extends(ResetInstanceAttributeCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ResetNetworkInterfaceAttributeRequest } from "../models/models_5";
4
+ import { ResetNetworkInterfaceAttributeRequest } from "../models/models_6";
5
5
  import { deserializeAws_ec2ResetNetworkInterfaceAttributeCommand, serializeAws_ec2ResetNetworkInterfaceAttributeCommand, } from "../protocols/Aws_ec2";
6
6
  var ResetNetworkInterfaceAttributeCommand = (function (_super) {
7
7
  __extends(ResetNetworkInterfaceAttributeCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ResetSnapshotAttributeRequest } from "../models/models_5";
4
+ import { ResetSnapshotAttributeRequest } from "../models/models_6";
5
5
  import { deserializeAws_ec2ResetSnapshotAttributeCommand, serializeAws_ec2ResetSnapshotAttributeCommand, } from "../protocols/Aws_ec2";
6
6
  var ResetSnapshotAttributeCommand = (function (_super) {
7
7
  __extends(ResetSnapshotAttributeCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { RestoreAddressToClassicRequest, RestoreAddressToClassicResult } from "../models/models_5";
4
+ import { RestoreAddressToClassicRequest, RestoreAddressToClassicResult } from "../models/models_6";
5
5
  import { deserializeAws_ec2RestoreAddressToClassicCommand, serializeAws_ec2RestoreAddressToClassicCommand, } from "../protocols/Aws_ec2";
6
6
  var RestoreAddressToClassicCommand = (function (_super) {
7
7
  __extends(RestoreAddressToClassicCommand, _super);
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { RestoreImageFromRecycleBinRequest, RestoreImageFromRecycleBinResult } from "../models/models_6";
5
+ import { deserializeAws_ec2RestoreImageFromRecycleBinCommand, serializeAws_ec2RestoreImageFromRecycleBinCommand, } from "../protocols/Aws_ec2";
6
+ var RestoreImageFromRecycleBinCommand = (function (_super) {
7
+ __extends(RestoreImageFromRecycleBinCommand, _super);
8
+ function RestoreImageFromRecycleBinCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ RestoreImageFromRecycleBinCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EC2Client";
18
+ var commandName = "RestoreImageFromRecycleBinCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: RestoreImageFromRecycleBinRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: RestoreImageFromRecycleBinResult.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ RestoreImageFromRecycleBinCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_ec2RestoreImageFromRecycleBinCommand(input, context);
33
+ };
34
+ RestoreImageFromRecycleBinCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_ec2RestoreImageFromRecycleBinCommand(output, context);
36
+ };
37
+ return RestoreImageFromRecycleBinCommand;
38
+ }($Command));
39
+ export { RestoreImageFromRecycleBinCommand };
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { RestoreManagedPrefixListVersionRequest, RestoreManagedPrefixListVersionResult } from "../models/models_5";
4
+ import { RestoreManagedPrefixListVersionRequest, RestoreManagedPrefixListVersionResult } from "../models/models_6";
5
5
  import { deserializeAws_ec2RestoreManagedPrefixListVersionCommand, serializeAws_ec2RestoreManagedPrefixListVersionCommand, } from "../protocols/Aws_ec2";
6
6
  var RestoreManagedPrefixListVersionCommand = (function (_super) {
7
7
  __extends(RestoreManagedPrefixListVersionCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { RestoreSnapshotFromRecycleBinRequest, RestoreSnapshotFromRecycleBinResult } from "../models/models_5";
4
+ import { RestoreSnapshotFromRecycleBinRequest, RestoreSnapshotFromRecycleBinResult } from "../models/models_6";
5
5
  import { deserializeAws_ec2RestoreSnapshotFromRecycleBinCommand, serializeAws_ec2RestoreSnapshotFromRecycleBinCommand, } from "../protocols/Aws_ec2";
6
6
  var RestoreSnapshotFromRecycleBinCommand = (function (_super) {
7
7
  __extends(RestoreSnapshotFromRecycleBinCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { RestoreSnapshotTierRequest, RestoreSnapshotTierResult } from "../models/models_5";
4
+ import { RestoreSnapshotTierRequest, RestoreSnapshotTierResult } from "../models/models_6";
5
5
  import { deserializeAws_ec2RestoreSnapshotTierCommand, serializeAws_ec2RestoreSnapshotTierCommand, } from "../protocols/Aws_ec2";
6
6
  var RestoreSnapshotTierCommand = (function (_super) {
7
7
  __extends(RestoreSnapshotTierCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { RevokeClientVpnIngressRequest, RevokeClientVpnIngressResult } from "../models/models_5";
4
+ import { RevokeClientVpnIngressRequest, RevokeClientVpnIngressResult } from "../models/models_6";
5
5
  import { deserializeAws_ec2RevokeClientVpnIngressCommand, serializeAws_ec2RevokeClientVpnIngressCommand, } from "../protocols/Aws_ec2";
6
6
  var RevokeClientVpnIngressCommand = (function (_super) {
7
7
  __extends(RevokeClientVpnIngressCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { RevokeSecurityGroupEgressRequest, RevokeSecurityGroupEgressResult } from "../models/models_5";
4
+ import { RevokeSecurityGroupEgressRequest, RevokeSecurityGroupEgressResult } from "../models/models_6";
5
5
  import { deserializeAws_ec2RevokeSecurityGroupEgressCommand, serializeAws_ec2RevokeSecurityGroupEgressCommand, } from "../protocols/Aws_ec2";
6
6
  var RevokeSecurityGroupEgressCommand = (function (_super) {
7
7
  __extends(RevokeSecurityGroupEgressCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { RevokeSecurityGroupIngressRequest, RevokeSecurityGroupIngressResult } from "../models/models_5";
4
+ import { RevokeSecurityGroupIngressRequest, RevokeSecurityGroupIngressResult } from "../models/models_6";
5
5
  import { deserializeAws_ec2RevokeSecurityGroupIngressCommand, serializeAws_ec2RevokeSecurityGroupIngressCommand, } from "../protocols/Aws_ec2";
6
6
  var RevokeSecurityGroupIngressCommand = (function (_super) {
7
7
  __extends(RevokeSecurityGroupIngressCommand, _super);
@@ -208,6 +208,7 @@ export * from "./DescribeEgressOnlyInternetGatewaysCommand";
208
208
  export * from "./DescribeElasticGpusCommand";
209
209
  export * from "./DescribeExportImageTasksCommand";
210
210
  export * from "./DescribeExportTasksCommand";
211
+ export * from "./DescribeFastLaunchImagesCommand";
211
212
  export * from "./DescribeFastSnapshotRestoresCommand";
212
213
  export * from "./DescribeFleetHistoryCommand";
213
214
  export * from "./DescribeFleetInstancesCommand";
@@ -322,6 +323,7 @@ export * from "./DetachNetworkInterfaceCommand";
322
323
  export * from "./DetachVolumeCommand";
323
324
  export * from "./DetachVpnGatewayCommand";
324
325
  export * from "./DisableEbsEncryptionByDefaultCommand";
326
+ export * from "./DisableFastLaunchCommand";
325
327
  export * from "./DisableFastSnapshotRestoresCommand";
326
328
  export * from "./DisableImageDeprecationCommand";
327
329
  export * from "./DisableIpamOrganizationAdminAccountCommand";
@@ -342,6 +344,7 @@ export * from "./DisassociateTransitGatewayRouteTableCommand";
342
344
  export * from "./DisassociateTrunkInterfaceCommand";
343
345
  export * from "./DisassociateVpcCidrBlockCommand";
344
346
  export * from "./EnableEbsEncryptionByDefaultCommand";
347
+ export * from "./EnableFastLaunchCommand";
345
348
  export * from "./EnableFastSnapshotRestoresCommand";
346
349
  export * from "./EnableImageDeprecationCommand";
347
350
  export * from "./EnableIpamOrganizationAdminAccountCommand";
@@ -395,6 +398,7 @@ export * from "./ImportInstanceCommand";
395
398
  export * from "./ImportKeyPairCommand";
396
399
  export * from "./ImportSnapshotCommand";
397
400
  export * from "./ImportVolumeCommand";
401
+ export * from "./ListImagesInRecycleBinCommand";
398
402
  export * from "./ListSnapshotsInRecycleBinCommand";
399
403
  export * from "./ModifyAddressAttributeCommand";
400
404
  export * from "./ModifyAvailabilityZoneGroupCommand";
@@ -489,6 +493,7 @@ export * from "./ResetInstanceAttributeCommand";
489
493
  export * from "./ResetNetworkInterfaceAttributeCommand";
490
494
  export * from "./ResetSnapshotAttributeCommand";
491
495
  export * from "./RestoreAddressToClassicCommand";
496
+ export * from "./RestoreImageFromRecycleBinCommand";
492
497
  export * from "./RestoreManagedPrefixListVersionCommand";
493
498
  export * from "./RestoreSnapshotFromRecycleBinCommand";
494
499
  export * from "./RestoreSnapshotTierCommand";
@@ -859,6 +859,12 @@ export var CapacityReservationInstancePlatform;
859
859
  CapacityReservationInstancePlatform["LINUX_WITH_SQL_SERVER_STANDARD"] = "Linux with SQL Server Standard";
860
860
  CapacityReservationInstancePlatform["LINUX_WITH_SQL_SERVER_WEB"] = "Linux with SQL Server Web";
861
861
  CapacityReservationInstancePlatform["RED_HAT_ENTERPRISE_LINUX"] = "Red Hat Enterprise Linux";
862
+ CapacityReservationInstancePlatform["RHEL_WITH_HA"] = "RHEL with HA";
863
+ CapacityReservationInstancePlatform["RHEL_WITH_HA_AND_SQL_SERVER_ENTERPRISE"] = "RHEL with HA and SQL Server Enterprise";
864
+ CapacityReservationInstancePlatform["RHEL_WITH_HA_AND_SQL_SERVER_STANDARD"] = "RHEL with HA and SQL Server Standard";
865
+ CapacityReservationInstancePlatform["RHEL_WITH_SQL_SERVER_ENTERPRISE"] = "RHEL with SQL Server Enterprise";
866
+ CapacityReservationInstancePlatform["RHEL_WITH_SQL_SERVER_STANDARD"] = "RHEL with SQL Server Standard";
867
+ CapacityReservationInstancePlatform["RHEL_WITH_SQL_SERVER_WEB"] = "RHEL with SQL Server Web";
862
868
  CapacityReservationInstancePlatform["SUSE_LINUX"] = "SUSE Linux";
863
869
  CapacityReservationInstancePlatform["WINDOWS"] = "Windows";
864
870
  CapacityReservationInstancePlatform["WINDOWS_WITH_SQL_SERVER"] = "Windows with SQL Server";
@@ -934,6 +940,10 @@ export var ClientConnectOptions;
934
940
  (function (ClientConnectOptions) {
935
941
  ClientConnectOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
936
942
  })(ClientConnectOptions || (ClientConnectOptions = {}));
943
+ export var ClientLoginBannerOptions;
944
+ (function (ClientLoginBannerOptions) {
945
+ ClientLoginBannerOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
946
+ })(ClientLoginBannerOptions || (ClientLoginBannerOptions = {}));
937
947
  export var ConnectionLogOptions;
938
948
  (function (ConnectionLogOptions) {
939
949
  ConnectionLogOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1089,8 +1099,3 @@ export var LocalStorage;
1089
1099
  LocalStorage["INCLUDED"] = "included";
1090
1100
  LocalStorage["REQUIRED"] = "required";
1091
1101
  })(LocalStorage || (LocalStorage = {}));
1092
- export var LocalStorageType;
1093
- (function (LocalStorageType) {
1094
- LocalStorageType["HDD"] = "hdd";
1095
- LocalStorageType["SSD"] = "ssd";
1096
- })(LocalStorageType || (LocalStorageType = {}));
@@ -1,5 +1,10 @@
1
1
  import { __assign } from "tslib";
2
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
+ export var LocalStorageType;
4
+ (function (LocalStorageType) {
5
+ LocalStorageType["HDD"] = "hdd";
6
+ LocalStorageType["SSD"] = "ssd";
7
+ })(LocalStorageType || (LocalStorageType = {}));
3
8
  export var MemoryGiBPerVCpuRequest;
4
9
  (function (MemoryGiBPerVCpuRequest) {
5
10
  MemoryGiBPerVCpuRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };