@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,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { GetIpamAddressHistoryRequest, GetIpamAddressHistoryResult } from "../models/models_4";
4
+ import { GetIpamAddressHistoryRequest, GetIpamAddressHistoryResult } from "../models/models_5";
5
5
  export interface GetIpamAddressHistoryCommandInput extends GetIpamAddressHistoryRequest {
6
6
  }
7
7
  export interface GetIpamAddressHistoryCommandOutput extends GetIpamAddressHistoryResult, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { GetIpamPoolAllocationsRequest, GetIpamPoolAllocationsResult } from "../models/models_4";
4
+ import { GetIpamPoolAllocationsRequest, GetIpamPoolAllocationsResult } from "../models/models_5";
5
5
  export interface GetIpamPoolAllocationsCommandInput extends GetIpamPoolAllocationsRequest {
6
6
  }
7
7
  export interface GetIpamPoolAllocationsCommandOutput extends GetIpamPoolAllocationsResult, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { GetIpamPoolCidrsRequest, GetIpamPoolCidrsResult } from "../models/models_4";
4
+ import { GetIpamPoolCidrsRequest, GetIpamPoolCidrsResult } from "../models/models_5";
5
5
  export interface GetIpamPoolCidrsCommandInput extends GetIpamPoolCidrsRequest {
6
6
  }
7
7
  export interface GetIpamPoolCidrsCommandOutput extends GetIpamPoolCidrsResult, __MetadataBearer {
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { GetIpamResourceCidrsRequest } from "../models/models_4";
5
- import { GetIpamResourceCidrsResult } from "../models/models_5";
4
+ import { GetIpamResourceCidrsRequest, GetIpamResourceCidrsResult } from "../models/models_5";
6
5
  export interface GetIpamResourceCidrsCommandInput extends GetIpamResourceCidrsRequest {
7
6
  }
8
7
  export interface GetIpamResourceCidrsCommandOutput extends GetIpamResourceCidrsResult, __MetadataBearer {
@@ -0,0 +1,37 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
+ import { ListImagesInRecycleBinRequest, ListImagesInRecycleBinResult } from "../models/models_5";
5
+ export interface ListImagesInRecycleBinCommandInput extends ListImagesInRecycleBinRequest {
6
+ }
7
+ export interface ListImagesInRecycleBinCommandOutput extends ListImagesInRecycleBinResult, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Lists one or more AMIs that are currently in the Recycle Bin. For more information,
11
+ * see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/recycle-bin.html">Recycle
12
+ * Bin</a> in the Amazon Elastic Compute Cloud User Guide.</p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { EC2Client, ListImagesInRecycleBinCommand } from "@aws-sdk/client-ec2"; // ES Modules import
17
+ * // const { EC2Client, ListImagesInRecycleBinCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
18
+ * const client = new EC2Client(config);
19
+ * const command = new ListImagesInRecycleBinCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link ListImagesInRecycleBinCommandInput} for command's `input` shape.
24
+ * @see {@link ListImagesInRecycleBinCommandOutput} for command's `response` shape.
25
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
26
+ *
27
+ */
28
+ export declare class ListImagesInRecycleBinCommand extends $Command<ListImagesInRecycleBinCommandInput, ListImagesInRecycleBinCommandOutput, EC2ClientResolvedConfig> {
29
+ readonly input: ListImagesInRecycleBinCommandInput;
30
+ constructor(input: ListImagesInRecycleBinCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EC2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListImagesInRecycleBinCommandInput, ListImagesInRecycleBinCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { ResetInstanceAttributeRequest } from "../models/models_5";
4
+ import { ResetInstanceAttributeRequest } from "../models/models_6";
5
5
  export interface ResetInstanceAttributeCommandInput extends ResetInstanceAttributeRequest {
6
6
  }
7
7
  export interface ResetInstanceAttributeCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { ResetNetworkInterfaceAttributeRequest } from "../models/models_5";
4
+ import { ResetNetworkInterfaceAttributeRequest } from "../models/models_6";
5
5
  export interface ResetNetworkInterfaceAttributeCommandInput extends ResetNetworkInterfaceAttributeRequest {
6
6
  }
7
7
  export interface ResetNetworkInterfaceAttributeCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { ResetSnapshotAttributeRequest } from "../models/models_5";
4
+ import { ResetSnapshotAttributeRequest } from "../models/models_6";
5
5
  export interface ResetSnapshotAttributeCommandInput extends ResetSnapshotAttributeRequest {
6
6
  }
7
7
  export interface ResetSnapshotAttributeCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { RestoreAddressToClassicRequest, RestoreAddressToClassicResult } from "../models/models_5";
4
+ import { RestoreAddressToClassicRequest, RestoreAddressToClassicResult } from "../models/models_6";
5
5
  export interface RestoreAddressToClassicCommandInput extends RestoreAddressToClassicRequest {
6
6
  }
7
7
  export interface RestoreAddressToClassicCommandOutput extends RestoreAddressToClassicResult, __MetadataBearer {
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
+ import { RestoreImageFromRecycleBinRequest, RestoreImageFromRecycleBinResult } from "../models/models_6";
5
+ export interface RestoreImageFromRecycleBinCommandInput extends RestoreImageFromRecycleBinRequest {
6
+ }
7
+ export interface RestoreImageFromRecycleBinCommandOutput extends RestoreImageFromRecycleBinResult, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Restores an AMI from the Recycle Bin. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/recycle-bin.html">Recycle Bin</a> in the Amazon Elastic Compute Cloud User Guide.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { EC2Client, RestoreImageFromRecycleBinCommand } from "@aws-sdk/client-ec2"; // ES Modules import
15
+ * // const { EC2Client, RestoreImageFromRecycleBinCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
16
+ * const client = new EC2Client(config);
17
+ * const command = new RestoreImageFromRecycleBinCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link RestoreImageFromRecycleBinCommandInput} for command's `input` shape.
22
+ * @see {@link RestoreImageFromRecycleBinCommandOutput} for command's `response` shape.
23
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
24
+ *
25
+ */
26
+ export declare class RestoreImageFromRecycleBinCommand extends $Command<RestoreImageFromRecycleBinCommandInput, RestoreImageFromRecycleBinCommandOutput, EC2ClientResolvedConfig> {
27
+ readonly input: RestoreImageFromRecycleBinCommandInput;
28
+ constructor(input: RestoreImageFromRecycleBinCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EC2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreImageFromRecycleBinCommandInput, RestoreImageFromRecycleBinCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { RestoreManagedPrefixListVersionRequest, RestoreManagedPrefixListVersionResult } from "../models/models_5";
4
+ import { RestoreManagedPrefixListVersionRequest, RestoreManagedPrefixListVersionResult } from "../models/models_6";
5
5
  export interface RestoreManagedPrefixListVersionCommandInput extends RestoreManagedPrefixListVersionRequest {
6
6
  }
7
7
  export interface RestoreManagedPrefixListVersionCommandOutput extends RestoreManagedPrefixListVersionResult, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { RestoreSnapshotFromRecycleBinRequest, RestoreSnapshotFromRecycleBinResult } from "../models/models_5";
4
+ import { RestoreSnapshotFromRecycleBinRequest, RestoreSnapshotFromRecycleBinResult } from "../models/models_6";
5
5
  export interface RestoreSnapshotFromRecycleBinCommandInput extends RestoreSnapshotFromRecycleBinRequest {
6
6
  }
7
7
  export interface RestoreSnapshotFromRecycleBinCommandOutput extends RestoreSnapshotFromRecycleBinResult, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { RestoreSnapshotTierRequest, RestoreSnapshotTierResult } from "../models/models_5";
4
+ import { RestoreSnapshotTierRequest, RestoreSnapshotTierResult } from "../models/models_6";
5
5
  export interface RestoreSnapshotTierCommandInput extends RestoreSnapshotTierRequest {
6
6
  }
7
7
  export interface RestoreSnapshotTierCommandOutput extends RestoreSnapshotTierResult, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { RevokeClientVpnIngressRequest, RevokeClientVpnIngressResult } from "../models/models_5";
4
+ import { RevokeClientVpnIngressRequest, RevokeClientVpnIngressResult } from "../models/models_6";
5
5
  export interface RevokeClientVpnIngressCommandInput extends RevokeClientVpnIngressRequest {
6
6
  }
7
7
  export interface RevokeClientVpnIngressCommandOutput extends RevokeClientVpnIngressResult, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { RevokeSecurityGroupEgressRequest, RevokeSecurityGroupEgressResult } from "../models/models_5";
4
+ import { RevokeSecurityGroupEgressRequest, RevokeSecurityGroupEgressResult } from "../models/models_6";
5
5
  export interface RevokeSecurityGroupEgressCommandInput extends RevokeSecurityGroupEgressRequest {
6
6
  }
7
7
  export interface RevokeSecurityGroupEgressCommandOutput extends RevokeSecurityGroupEgressResult, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { RevokeSecurityGroupIngressRequest, RevokeSecurityGroupIngressResult } from "../models/models_5";
4
+ import { RevokeSecurityGroupIngressRequest, RevokeSecurityGroupIngressResult } from "../models/models_6";
5
5
  export interface RevokeSecurityGroupIngressCommandInput extends RevokeSecurityGroupIngressRequest {
6
6
  }
7
7
  export interface RevokeSecurityGroupIngressCommandOutput extends RevokeSecurityGroupIngressResult, __MetadataBearer {
@@ -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";
@@ -3873,8 +3873,8 @@ export interface BundleInstanceRequest {
3873
3873
  Storage: Storage | undefined;
3874
3874
  /**
3875
3875
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
3876
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
3877
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3876
+ * and provides an error response. If you have the required permissions, the error response is
3877
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3878
3878
  */
3879
3879
  DryRun?: boolean;
3880
3880
  }
@@ -3972,8 +3972,8 @@ export interface CancelBundleTaskRequest {
3972
3972
  BundleId: string | undefined;
3973
3973
  /**
3974
3974
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
3975
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
3976
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3975
+ * and provides an error response. If you have the required permissions, the error response is
3976
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3977
3977
  */
3978
3978
  DryRun?: boolean;
3979
3979
  }
@@ -4677,8 +4677,8 @@ export interface CopyImageRequest {
4677
4677
  DestinationOutpostArn?: string;
4678
4678
  /**
4679
4679
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
4680
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
4681
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
4680
+ * and provides an error response. If you have the required permissions, the error response is
4681
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
4682
4682
  */
4683
4683
  DryRun?: boolean;
4684
4684
  }
@@ -4826,6 +4826,12 @@ export declare enum CapacityReservationInstancePlatform {
4826
4826
  LINUX_WITH_SQL_SERVER_STANDARD = "Linux with SQL Server Standard",
4827
4827
  LINUX_WITH_SQL_SERVER_WEB = "Linux with SQL Server Web",
4828
4828
  RED_HAT_ENTERPRISE_LINUX = "Red Hat Enterprise Linux",
4829
+ RHEL_WITH_HA = "RHEL with HA",
4830
+ RHEL_WITH_HA_AND_SQL_SERVER_ENTERPRISE = "RHEL with HA and SQL Server Enterprise",
4831
+ RHEL_WITH_HA_AND_SQL_SERVER_STANDARD = "RHEL with HA and SQL Server Standard",
4832
+ RHEL_WITH_SQL_SERVER_ENTERPRISE = "RHEL with SQL Server Enterprise",
4833
+ RHEL_WITH_SQL_SERVER_STANDARD = "RHEL with SQL Server Standard",
4834
+ RHEL_WITH_SQL_SERVER_WEB = "RHEL with SQL Server Web",
4829
4835
  SUSE_LINUX = "SUSE Linux",
4830
4836
  WINDOWS = "Windows",
4831
4837
  WINDOWS_WITH_SQL_SERVER = "Windows with SQL Server",
@@ -5155,7 +5161,7 @@ export declare namespace CreateCapacityReservationResult {
5155
5161
  export declare enum FleetInstanceMatchCriteria {
5156
5162
  open = "open"
5157
5163
  }
5158
- export declare type _InstanceType = "a1.2xlarge" | "a1.4xlarge" | "a1.large" | "a1.medium" | "a1.metal" | "a1.xlarge" | "c1.medium" | "c1.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c3.large" | "c3.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c4.large" | "c4.xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.large" | "c5.metal" | "c5.xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.large" | "c5a.xlarge" | "c5ad.12xlarge" | "c5ad.16xlarge" | "c5ad.24xlarge" | "c5ad.2xlarge" | "c5ad.4xlarge" | "c5ad.8xlarge" | "c5ad.large" | "c5ad.xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.large" | "c5d.metal" | "c5d.xlarge" | "c5n.18xlarge" | "c5n.2xlarge" | "c5n.4xlarge" | "c5n.9xlarge" | "c5n.large" | "c5n.metal" | "c5n.xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.large" | "c6g.medium" | "c6g.metal" | "c6g.xlarge" | "c6gd.12xlarge" | "c6gd.16xlarge" | "c6gd.2xlarge" | "c6gd.4xlarge" | "c6gd.8xlarge" | "c6gd.large" | "c6gd.medium" | "c6gd.metal" | "c6gd.xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.large" | "c6gn.medium" | "c6gn.xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "c6i.2xlarge" | "c6i.32xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.large" | "c6i.xlarge" | "cc1.4xlarge" | "cc2.8xlarge" | "cg1.4xlarge" | "cr1.8xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d2.xlarge" | "d3.2xlarge" | "d3.4xlarge" | "d3.8xlarge" | "d3.xlarge" | "d3en.12xlarge" | "d3en.2xlarge" | "d3en.4xlarge" | "d3en.6xlarge" | "d3en.8xlarge" | "d3en.xlarge" | "dl1.24xlarge" | "f1.16xlarge" | "f1.2xlarge" | "f1.4xlarge" | "g2.2xlarge" | "g2.8xlarge" | "g3.16xlarge" | "g3.4xlarge" | "g3.8xlarge" | "g3s.xlarge" | "g4ad.16xlarge" | "g4ad.2xlarge" | "g4ad.4xlarge" | "g4ad.8xlarge" | "g4ad.xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.metal" | "g4dn.xlarge" | "g5.12xlarge" | "g5.16xlarge" | "g5.24xlarge" | "g5.2xlarge" | "g5.48xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.xlarge" | "g5g.16xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.metal" | "g5g.xlarge" | "h1.16xlarge" | "h1.2xlarge" | "h1.4xlarge" | "h1.8xlarge" | "hi1.4xlarge" | "hs1.8xlarge" | "i2.2xlarge" | "i2.4xlarge" | "i2.8xlarge" | "i2.xlarge" | "i3.16xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.large" | "i3.metal" | "i3.xlarge" | "i3en.12xlarge" | "i3en.24xlarge" | "i3en.2xlarge" | "i3en.3xlarge" | "i3en.6xlarge" | "i3en.large" | "i3en.metal" | "i3en.xlarge" | "im4gn.16xlarge" | "im4gn.2xlarge" | "im4gn.4xlarge" | "im4gn.8xlarge" | "im4gn.large" | "im4gn.xlarge" | "inf1.24xlarge" | "inf1.2xlarge" | "inf1.6xlarge" | "inf1.xlarge" | "is4gen.2xlarge" | "is4gen.4xlarge" | "is4gen.8xlarge" | "is4gen.large" | "is4gen.medium" | "is4gen.xlarge" | "m1.large" | "m1.medium" | "m1.small" | "m1.xlarge" | "m2.2xlarge" | "m2.4xlarge" | "m2.xlarge" | "m3.2xlarge" | "m3.large" | "m3.medium" | "m3.xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.large" | "m4.xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.large" | "m5.metal" | "m5.xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.large" | "m5a.xlarge" | "m5ad.12xlarge" | "m5ad.16xlarge" | "m5ad.24xlarge" | "m5ad.2xlarge" | "m5ad.4xlarge" | "m5ad.8xlarge" | "m5ad.large" | "m5ad.xlarge" | "m5d.12xlarge" | "m5d.16xlarge" | "m5d.24xlarge" | "m5d.2xlarge" | "m5d.4xlarge" | "m5d.8xlarge" | "m5d.large" | "m5d.metal" | "m5d.xlarge" | "m5dn.12xlarge" | "m5dn.16xlarge" | "m5dn.24xlarge" | "m5dn.2xlarge" | "m5dn.4xlarge" | "m5dn.8xlarge" | "m5dn.large" | "m5dn.metal" | "m5dn.xlarge" | "m5n.12xlarge" | "m5n.16xlarge" | "m5n.24xlarge" | "m5n.2xlarge" | "m5n.4xlarge" | "m5n.8xlarge" | "m5n.large" | "m5n.metal" | "m5n.xlarge" | "m5zn.12xlarge" | "m5zn.2xlarge" | "m5zn.3xlarge" | "m5zn.6xlarge" | "m5zn.large" | "m5zn.metal" | "m5zn.xlarge" | "m6a.12xlarge" | "m6a.16xlarge" | "m6a.24xlarge" | "m6a.2xlarge" | "m6a.32xlarge" | "m6a.48xlarge" | "m6a.4xlarge" | "m6a.8xlarge" | "m6a.large" | "m6a.xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.large" | "m6g.medium" | "m6g.metal" | "m6g.xlarge" | "m6gd.12xlarge" | "m6gd.16xlarge" | "m6gd.2xlarge" | "m6gd.4xlarge" | "m6gd.8xlarge" | "m6gd.large" | "m6gd.medium" | "m6gd.metal" | "m6gd.xlarge" | "m6i.12xlarge" | "m6i.16xlarge" | "m6i.24xlarge" | "m6i.2xlarge" | "m6i.32xlarge" | "m6i.4xlarge" | "m6i.8xlarge" | "m6i.large" | "m6i.xlarge" | "mac1.metal" | "p2.16xlarge" | "p2.8xlarge" | "p2.xlarge" | "p3.16xlarge" | "p3.2xlarge" | "p3.8xlarge" | "p3dn.24xlarge" | "p4d.24xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r3.large" | "r3.xlarge" | "r4.16xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.large" | "r4.xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.large" | "r5.metal" | "r5.xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.large" | "r5a.xlarge" | "r5ad.12xlarge" | "r5ad.16xlarge" | "r5ad.24xlarge" | "r5ad.2xlarge" | "r5ad.4xlarge" | "r5ad.8xlarge" | "r5ad.large" | "r5ad.xlarge" | "r5b.12xlarge" | "r5b.16xlarge" | "r5b.24xlarge" | "r5b.2xlarge" | "r5b.4xlarge" | "r5b.8xlarge" | "r5b.large" | "r5b.metal" | "r5b.xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.large" | "r5d.metal" | "r5d.xlarge" | "r5dn.12xlarge" | "r5dn.16xlarge" | "r5dn.24xlarge" | "r5dn.2xlarge" | "r5dn.4xlarge" | "r5dn.8xlarge" | "r5dn.large" | "r5dn.metal" | "r5dn.xlarge" | "r5n.12xlarge" | "r5n.16xlarge" | "r5n.24xlarge" | "r5n.2xlarge" | "r5n.4xlarge" | "r5n.8xlarge" | "r5n.large" | "r5n.metal" | "r5n.xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.large" | "r6g.medium" | "r6g.metal" | "r6g.xlarge" | "r6gd.12xlarge" | "r6gd.16xlarge" | "r6gd.2xlarge" | "r6gd.4xlarge" | "r6gd.8xlarge" | "r6gd.large" | "r6gd.medium" | "r6gd.metal" | "r6gd.xlarge" | "t1.micro" | "t2.2xlarge" | "t2.large" | "t2.medium" | "t2.micro" | "t2.nano" | "t2.small" | "t2.xlarge" | "t3.2xlarge" | "t3.large" | "t3.medium" | "t3.micro" | "t3.nano" | "t3.small" | "t3.xlarge" | "t3a.2xlarge" | "t3a.large" | "t3a.medium" | "t3a.micro" | "t3a.nano" | "t3a.small" | "t3a.xlarge" | "t4g.2xlarge" | "t4g.large" | "t4g.medium" | "t4g.micro" | "t4g.nano" | "t4g.small" | "t4g.xlarge" | "u-12tb1.112xlarge" | "u-12tb1.metal" | "u-18tb1.metal" | "u-24tb1.metal" | "u-6tb1.112xlarge" | "u-6tb1.56xlarge" | "u-6tb1.metal" | "u-9tb1.112xlarge" | "u-9tb1.metal" | "vt1.24xlarge" | "vt1.3xlarge" | "vt1.6xlarge" | "x1.16xlarge" | "x1.32xlarge" | "x1e.16xlarge" | "x1e.2xlarge" | "x1e.32xlarge" | "x1e.4xlarge" | "x1e.8xlarge" | "x1e.xlarge" | "x2gd.12xlarge" | "x2gd.16xlarge" | "x2gd.2xlarge" | "x2gd.4xlarge" | "x2gd.8xlarge" | "x2gd.large" | "x2gd.medium" | "x2gd.metal" | "x2gd.xlarge" | "z1d.12xlarge" | "z1d.2xlarge" | "z1d.3xlarge" | "z1d.6xlarge" | "z1d.large" | "z1d.metal" | "z1d.xlarge";
5164
+ export declare type _InstanceType = "a1.2xlarge" | "a1.4xlarge" | "a1.large" | "a1.medium" | "a1.metal" | "a1.xlarge" | "c1.medium" | "c1.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c3.large" | "c3.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c4.large" | "c4.xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.large" | "c5.metal" | "c5.xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.large" | "c5a.xlarge" | "c5ad.12xlarge" | "c5ad.16xlarge" | "c5ad.24xlarge" | "c5ad.2xlarge" | "c5ad.4xlarge" | "c5ad.8xlarge" | "c5ad.large" | "c5ad.xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.large" | "c5d.metal" | "c5d.xlarge" | "c5n.18xlarge" | "c5n.2xlarge" | "c5n.4xlarge" | "c5n.9xlarge" | "c5n.large" | "c5n.metal" | "c5n.xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.large" | "c6g.medium" | "c6g.metal" | "c6g.xlarge" | "c6gd.12xlarge" | "c6gd.16xlarge" | "c6gd.2xlarge" | "c6gd.4xlarge" | "c6gd.8xlarge" | "c6gd.large" | "c6gd.medium" | "c6gd.metal" | "c6gd.xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.large" | "c6gn.medium" | "c6gn.xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "c6i.2xlarge" | "c6i.32xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.large" | "c6i.metal" | "c6i.xlarge" | "cc1.4xlarge" | "cc2.8xlarge" | "cg1.4xlarge" | "cr1.8xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d2.xlarge" | "d3.2xlarge" | "d3.4xlarge" | "d3.8xlarge" | "d3.xlarge" | "d3en.12xlarge" | "d3en.2xlarge" | "d3en.4xlarge" | "d3en.6xlarge" | "d3en.8xlarge" | "d3en.xlarge" | "dl1.24xlarge" | "f1.16xlarge" | "f1.2xlarge" | "f1.4xlarge" | "g2.2xlarge" | "g2.8xlarge" | "g3.16xlarge" | "g3.4xlarge" | "g3.8xlarge" | "g3s.xlarge" | "g4ad.16xlarge" | "g4ad.2xlarge" | "g4ad.4xlarge" | "g4ad.8xlarge" | "g4ad.xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.metal" | "g4dn.xlarge" | "g5.12xlarge" | "g5.16xlarge" | "g5.24xlarge" | "g5.2xlarge" | "g5.48xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.xlarge" | "g5g.16xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.metal" | "g5g.xlarge" | "h1.16xlarge" | "h1.2xlarge" | "h1.4xlarge" | "h1.8xlarge" | "hi1.4xlarge" | "hpc6a.48xlarge" | "hs1.8xlarge" | "i2.2xlarge" | "i2.4xlarge" | "i2.8xlarge" | "i2.xlarge" | "i3.16xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.large" | "i3.metal" | "i3.xlarge" | "i3en.12xlarge" | "i3en.24xlarge" | "i3en.2xlarge" | "i3en.3xlarge" | "i3en.6xlarge" | "i3en.large" | "i3en.metal" | "i3en.xlarge" | "im4gn.16xlarge" | "im4gn.2xlarge" | "im4gn.4xlarge" | "im4gn.8xlarge" | "im4gn.large" | "im4gn.xlarge" | "inf1.24xlarge" | "inf1.2xlarge" | "inf1.6xlarge" | "inf1.xlarge" | "is4gen.2xlarge" | "is4gen.4xlarge" | "is4gen.8xlarge" | "is4gen.large" | "is4gen.medium" | "is4gen.xlarge" | "m1.large" | "m1.medium" | "m1.small" | "m1.xlarge" | "m2.2xlarge" | "m2.4xlarge" | "m2.xlarge" | "m3.2xlarge" | "m3.large" | "m3.medium" | "m3.xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.large" | "m4.xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.large" | "m5.metal" | "m5.xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.large" | "m5a.xlarge" | "m5ad.12xlarge" | "m5ad.16xlarge" | "m5ad.24xlarge" | "m5ad.2xlarge" | "m5ad.4xlarge" | "m5ad.8xlarge" | "m5ad.large" | "m5ad.xlarge" | "m5d.12xlarge" | "m5d.16xlarge" | "m5d.24xlarge" | "m5d.2xlarge" | "m5d.4xlarge" | "m5d.8xlarge" | "m5d.large" | "m5d.metal" | "m5d.xlarge" | "m5dn.12xlarge" | "m5dn.16xlarge" | "m5dn.24xlarge" | "m5dn.2xlarge" | "m5dn.4xlarge" | "m5dn.8xlarge" | "m5dn.large" | "m5dn.metal" | "m5dn.xlarge" | "m5n.12xlarge" | "m5n.16xlarge" | "m5n.24xlarge" | "m5n.2xlarge" | "m5n.4xlarge" | "m5n.8xlarge" | "m5n.large" | "m5n.metal" | "m5n.xlarge" | "m5zn.12xlarge" | "m5zn.2xlarge" | "m5zn.3xlarge" | "m5zn.6xlarge" | "m5zn.large" | "m5zn.metal" | "m5zn.xlarge" | "m6a.12xlarge" | "m6a.16xlarge" | "m6a.24xlarge" | "m6a.2xlarge" | "m6a.32xlarge" | "m6a.48xlarge" | "m6a.4xlarge" | "m6a.8xlarge" | "m6a.large" | "m6a.xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.large" | "m6g.medium" | "m6g.metal" | "m6g.xlarge" | "m6gd.12xlarge" | "m6gd.16xlarge" | "m6gd.2xlarge" | "m6gd.4xlarge" | "m6gd.8xlarge" | "m6gd.large" | "m6gd.medium" | "m6gd.metal" | "m6gd.xlarge" | "m6i.12xlarge" | "m6i.16xlarge" | "m6i.24xlarge" | "m6i.2xlarge" | "m6i.32xlarge" | "m6i.4xlarge" | "m6i.8xlarge" | "m6i.large" | "m6i.metal" | "m6i.xlarge" | "mac1.metal" | "p2.16xlarge" | "p2.8xlarge" | "p2.xlarge" | "p3.16xlarge" | "p3.2xlarge" | "p3.8xlarge" | "p3dn.24xlarge" | "p4d.24xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r3.large" | "r3.xlarge" | "r4.16xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.large" | "r4.xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.large" | "r5.metal" | "r5.xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.large" | "r5a.xlarge" | "r5ad.12xlarge" | "r5ad.16xlarge" | "r5ad.24xlarge" | "r5ad.2xlarge" | "r5ad.4xlarge" | "r5ad.8xlarge" | "r5ad.large" | "r5ad.xlarge" | "r5b.12xlarge" | "r5b.16xlarge" | "r5b.24xlarge" | "r5b.2xlarge" | "r5b.4xlarge" | "r5b.8xlarge" | "r5b.large" | "r5b.metal" | "r5b.xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.large" | "r5d.metal" | "r5d.xlarge" | "r5dn.12xlarge" | "r5dn.16xlarge" | "r5dn.24xlarge" | "r5dn.2xlarge" | "r5dn.4xlarge" | "r5dn.8xlarge" | "r5dn.large" | "r5dn.metal" | "r5dn.xlarge" | "r5n.12xlarge" | "r5n.16xlarge" | "r5n.24xlarge" | "r5n.2xlarge" | "r5n.4xlarge" | "r5n.8xlarge" | "r5n.large" | "r5n.metal" | "r5n.xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.large" | "r6g.medium" | "r6g.metal" | "r6g.xlarge" | "r6gd.12xlarge" | "r6gd.16xlarge" | "r6gd.2xlarge" | "r6gd.4xlarge" | "r6gd.8xlarge" | "r6gd.large" | "r6gd.medium" | "r6gd.metal" | "r6gd.xlarge" | "r6i.12xlarge" | "r6i.16xlarge" | "r6i.24xlarge" | "r6i.2xlarge" | "r6i.32xlarge" | "r6i.4xlarge" | "r6i.8xlarge" | "r6i.large" | "r6i.metal" | "r6i.xlarge" | "t1.micro" | "t2.2xlarge" | "t2.large" | "t2.medium" | "t2.micro" | "t2.nano" | "t2.small" | "t2.xlarge" | "t3.2xlarge" | "t3.large" | "t3.medium" | "t3.micro" | "t3.nano" | "t3.small" | "t3.xlarge" | "t3a.2xlarge" | "t3a.large" | "t3a.medium" | "t3a.micro" | "t3a.nano" | "t3a.small" | "t3a.xlarge" | "t4g.2xlarge" | "t4g.large" | "t4g.medium" | "t4g.micro" | "t4g.nano" | "t4g.small" | "t4g.xlarge" | "u-12tb1.112xlarge" | "u-12tb1.metal" | "u-18tb1.metal" | "u-24tb1.metal" | "u-6tb1.112xlarge" | "u-6tb1.56xlarge" | "u-6tb1.metal" | "u-9tb1.112xlarge" | "u-9tb1.metal" | "vt1.24xlarge" | "vt1.3xlarge" | "vt1.6xlarge" | "x1.16xlarge" | "x1.32xlarge" | "x1e.16xlarge" | "x1e.2xlarge" | "x1e.32xlarge" | "x1e.4xlarge" | "x1e.8xlarge" | "x1e.xlarge" | "x2gd.12xlarge" | "x2gd.16xlarge" | "x2gd.2xlarge" | "x2gd.4xlarge" | "x2gd.8xlarge" | "x2gd.large" | "x2gd.medium" | "x2gd.metal" | "x2gd.xlarge" | "x2iezn.12xlarge" | "x2iezn.2xlarge" | "x2iezn.4xlarge" | "x2iezn.6xlarge" | "x2iezn.8xlarge" | "x2iezn.metal" | "z1d.12xlarge" | "z1d.2xlarge" | "z1d.3xlarge" | "z1d.6xlarge" | "z1d.large" | "z1d.metal" | "z1d.xlarge";
5159
5165
  /**
5160
5166
  * <p>Information about an instance type to use in a Capacity Reservation Fleet.</p>
5161
5167
  */
@@ -5575,6 +5581,33 @@ export declare namespace ClientConnectOptions {
5575
5581
  */
5576
5582
  const filterSensitiveLog: (obj: ClientConnectOptions) => any;
5577
5583
  }
5584
+ /**
5585
+ * <p>Options for enabling a customizable text banner that will be displayed on
5586
+ * Amazon Web Services provided clients when a VPN session is established.</p>
5587
+ */
5588
+ export interface ClientLoginBannerOptions {
5589
+ /**
5590
+ * <p>Enable or disable a customizable text banner that will be displayed on
5591
+ * Amazon Web Services provided clients when a VPN session is established.</p>
5592
+ * <p>Valid values: <code>true | false</code>
5593
+ * </p>
5594
+ * <p>Default value: <code>false</code>
5595
+ * </p>
5596
+ */
5597
+ Enabled?: boolean;
5598
+ /**
5599
+ * <p>Customizable text that will be displayed in a banner on Amazon Web Services provided
5600
+ * clients when a VPN session is established. UTF-8 encoded characters only. Maximum of
5601
+ * 1400 characters.</p>
5602
+ */
5603
+ BannerText?: string;
5604
+ }
5605
+ export declare namespace ClientLoginBannerOptions {
5606
+ /**
5607
+ * @internal
5608
+ */
5609
+ const filterSensitiveLog: (obj: ClientLoginBannerOptions) => any;
5610
+ }
5578
5611
  /**
5579
5612
  * <p>Describes the client connection logging options for the Client VPN endpoint.</p>
5580
5613
  */
@@ -5694,6 +5727,19 @@ export interface CreateClientVpnEndpointRequest {
5694
5727
  * <p>The options for managing connection authorization for new client connections.</p>
5695
5728
  */
5696
5729
  ClientConnectOptions?: ClientConnectOptions;
5730
+ /**
5731
+ * <p>The maximum VPN session duration time in hours.</p>
5732
+ * <p>Valid values: <code>8 | 10 | 12 | 24</code>
5733
+ * </p>
5734
+ * <p>Default value: <code>24</code>
5735
+ * </p>
5736
+ */
5737
+ SessionTimeoutHours?: number;
5738
+ /**
5739
+ * <p>Options for enabling a customizable text banner that will be displayed on
5740
+ * Amazon Web Services provided clients when a VPN session is established.</p>
5741
+ */
5742
+ ClientLoginBannerOptions?: ClientLoginBannerOptions;
5697
5743
  }
5698
5744
  export declare namespace CreateClientVpnEndpointRequest {
5699
5745
  /**
@@ -6484,7 +6530,3 @@ export declare enum LocalStorage {
6484
6530
  INCLUDED = "included",
6485
6531
  REQUIRED = "required"
6486
6532
  }
6487
- export declare enum LocalStorageType {
6488
- HDD = "hdd",
6489
- SSD = "ssd"
6490
- }
@@ -1,4 +1,8 @@
1
- import { _InstanceType, AcceleratorCount, AcceleratorCountRequest, AcceleratorManufacturer, AcceleratorName, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AcceleratorType, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, AddressFamily, AttachmentStatus, BareMetal, BaselineEbsBandwidthMbpsRequest, BurstablePerformance, CpuManufacturer, CurrencyCodeValues, DnsSupportValue, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateSpecificationRequest, HostnameType, InstanceEventWindow, InstanceGeneration, InternetGatewayAttachment, Ipv4PrefixSpecification, LocalStorage, LocalStorageType, PortRange, Protocol, ReservedInstancesListing, ResourceType, RouteTableAssociationState, Subnet, Tag, TagSpecification, Tenancy, TransitGatewayAttachmentState, UnsuccessfulItem, WeekDay } from "./models_0";
1
+ import { _InstanceType, AcceleratorCount, AcceleratorCountRequest, AcceleratorManufacturer, AcceleratorName, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AcceleratorType, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, AddressFamily, AttachmentStatus, BareMetal, BaselineEbsBandwidthMbpsRequest, BurstablePerformance, CpuManufacturer, CurrencyCodeValues, DnsSupportValue, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateSpecificationRequest, HostnameType, InstanceEventWindow, InstanceGeneration, InternetGatewayAttachment, Ipv4PrefixSpecification, LocalStorage, PortRange, Protocol, ReservedInstancesListing, ResourceType, RouteTableAssociationState, Subnet, Tag, TagSpecification, Tenancy, TransitGatewayAttachmentState, UnsuccessfulItem, WeekDay } from "./models_0";
2
+ export declare enum LocalStorageType {
3
+ HDD = "hdd",
4
+ SSD = "ssd"
5
+ }
2
6
  /**
3
7
  * <p>The minimum and maximum amount of memory per vCPU, in GiB.</p>
4
8
  */
@@ -1940,8 +1944,8 @@ export interface CreateImageRequest {
1940
1944
  Description?: string;
1941
1945
  /**
1942
1946
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
1943
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
1944
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1947
+ * and provides an error response. If you have the required permissions, the error response is
1948
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1945
1949
  */
1946
1950
  DryRun?: boolean;
1947
1951
  /**
@@ -6549,8 +6553,8 @@ export interface CreateRestoreImageTaskRequest {
6549
6553
  TagSpecifications?: TagSpecification[];
6550
6554
  /**
6551
6555
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
6552
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
6553
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
6556
+ * and provides an error response. If you have the required permissions, the error response is
6557
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
6554
6558
  */
6555
6559
  DryRun?: boolean;
6556
6560
  }
@@ -7357,8 +7361,8 @@ export interface CreateStoreImageTaskRequest {
7357
7361
  S3ObjectTags?: S3ObjectTag[];
7358
7362
  /**
7359
7363
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
7360
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
7361
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
7364
+ * and provides an error response. If you have the required permissions, the error response is
7365
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
7362
7366
  */
7363
7367
  DryRun?: boolean;
7364
7368
  }
@@ -8404,4 +8408,3 @@ export declare namespace CreateTransitGatewayConnectPeerRequest {
8404
8408
  */
8405
8409
  const filterSensitiveLog: (obj: CreateTransitGatewayConnectPeerRequest) => any;
8406
8410
  }
8407
- export declare type BgpStatus = "down" | "up";
@@ -1,5 +1,6 @@
1
1
  import { AccountAttribute, AccountAttributeName, Address, AddressAttribute, AddressAttributeName, ApplianceModeSupportValue, AssociationStatus, BundleTask, ByoipCidr, CapacityReservation, CapacityReservationFleetState, CarrierGateway, ClientVpnAuthenticationType, ClientVpnAuthorizationRuleStatus, ClientVpnEndpointStatus, ClientVpnRouteStatus, DnsSupportValue, FleetCapacityReservation, FleetCapacityReservationTenancy, FleetInstanceMatchCriteria, GatewayType, InstanceEventWindowState, Ipv6SupportValue, Tag, TagSpecification, Tenancy, TransitGatewayAttachmentResourceType, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TransportProtocol, UnsuccessfulItem, VolumeAttachment, Vpc, VpcAttachment, VpcPeeringConnection } from "./models_0";
2
- import { BgpStatus, DiskImageFormat, GroupIdentifier, Ipam, IpamPool, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, PlatformValues, ProtocolValue, SubnetCidrReservation, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
2
+ import { DiskImageFormat, GroupIdentifier, Ipam, IpamPool, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, ProtocolValue, SubnetCidrReservation, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
3
+ export declare type BgpStatus = "down" | "up";
3
4
  /**
4
5
  * <p>The BGP configuration information.</p>
5
6
  */
@@ -4642,8 +4643,8 @@ export interface DeregisterImageRequest {
4642
4643
  ImageId: string | undefined;
4643
4644
  /**
4644
4645
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
4645
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
4646
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
4646
+ * and provides an error response. If you have the required permissions, the error response is
4647
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
4647
4648
  */
4648
4649
  DryRun?: boolean;
4649
4650
  }
@@ -5330,8 +5331,8 @@ export interface DescribeBundleTasksRequest {
5330
5331
  Filters?: Filter[];
5331
5332
  /**
5332
5333
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
5333
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
5334
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5334
+ * and provides an error response. If you have the required permissions, the error response is
5335
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5335
5336
  */
5336
5337
  DryRun?: boolean;
5337
5338
  }
@@ -6338,6 +6339,30 @@ export declare namespace ClientConnectResponseOptions {
6338
6339
  */
6339
6340
  const filterSensitiveLog: (obj: ClientConnectResponseOptions) => any;
6340
6341
  }
6342
+ /**
6343
+ * <p>Current state of options for customizable text banner that will be displayed on
6344
+ * Amazon Web Services provided clients when a VPN session is established.</p>
6345
+ */
6346
+ export interface ClientLoginBannerResponseOptions {
6347
+ /**
6348
+ * <p>Current state of text banner feature.</p>
6349
+ * <p>Valid values: <code>true | false</code>
6350
+ * </p>
6351
+ */
6352
+ Enabled?: boolean;
6353
+ /**
6354
+ * <p>Customizable text that will be displayed in a banner on Amazon Web Services provided
6355
+ * clients when a VPN session is established. UTF-8 encoded
6356
+ * characters only. Maximum of 1400 characters.</p>
6357
+ */
6358
+ BannerText?: string;
6359
+ }
6360
+ export declare namespace ClientLoginBannerResponseOptions {
6361
+ /**
6362
+ * @internal
6363
+ */
6364
+ const filterSensitiveLog: (obj: ClientLoginBannerResponseOptions) => any;
6365
+ }
6341
6366
  /**
6342
6367
  * <p>Information about the client connection logging options for a Client VPN endpoint.</p>
6343
6368
  */
@@ -6454,6 +6479,19 @@ export interface ClientVpnEndpoint {
6454
6479
  * <p>The options for managing connection authorization for new client connections.</p>
6455
6480
  */
6456
6481
  ClientConnectOptions?: ClientConnectResponseOptions;
6482
+ /**
6483
+ * <p>The maximum VPN session duration time in hours.</p>
6484
+ * <p>Valid values: <code>8 | 10 | 12 | 24</code>
6485
+ * </p>
6486
+ * <p>Default value: <code>24</code>
6487
+ * </p>
6488
+ */
6489
+ SessionTimeoutHours?: number;
6490
+ /**
6491
+ * <p>Options for enabling a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is
6492
+ * established.</p>
6493
+ */
6494
+ ClientLoginBannerOptions?: ClientLoginBannerResponseOptions;
6457
6495
  }
6458
6496
  export declare namespace ClientVpnEndpoint {
6459
6497
  /**
@@ -6833,69 +6871,3 @@ export declare namespace DiskImageVolumeDescription {
6833
6871
  */
6834
6872
  const filterSensitiveLog: (obj: DiskImageVolumeDescription) => any;
6835
6873
  }
6836
- /**
6837
- * <p>Describes an import volume task.</p>
6838
- */
6839
- export interface ImportInstanceVolumeDetailItem {
6840
- /**
6841
- * <p>The Availability Zone where the resulting instance will reside.</p>
6842
- */
6843
- AvailabilityZone?: string;
6844
- /**
6845
- * <p>The number of bytes converted so far.</p>
6846
- */
6847
- BytesConverted?: number;
6848
- /**
6849
- * <p>A description of the task.</p>
6850
- */
6851
- Description?: string;
6852
- /**
6853
- * <p>The image.</p>
6854
- */
6855
- Image?: DiskImageDescription;
6856
- /**
6857
- * <p>The status of the import of this particular disk image.</p>
6858
- */
6859
- Status?: string;
6860
- /**
6861
- * <p>The status information or errors related to the disk image.</p>
6862
- */
6863
- StatusMessage?: string;
6864
- /**
6865
- * <p>The volume.</p>
6866
- */
6867
- Volume?: DiskImageVolumeDescription;
6868
- }
6869
- export declare namespace ImportInstanceVolumeDetailItem {
6870
- /**
6871
- * @internal
6872
- */
6873
- const filterSensitiveLog: (obj: ImportInstanceVolumeDetailItem) => any;
6874
- }
6875
- /**
6876
- * <p>Describes an import instance task.</p>
6877
- */
6878
- export interface ImportInstanceTaskDetails {
6879
- /**
6880
- * <p>A description of the task.</p>
6881
- */
6882
- Description?: string;
6883
- /**
6884
- * <p>The ID of the instance.</p>
6885
- */
6886
- InstanceId?: string;
6887
- /**
6888
- * <p>The instance operating system.</p>
6889
- */
6890
- Platform?: PlatformValues | string;
6891
- /**
6892
- * <p>The volumes.</p>
6893
- */
6894
- Volumes?: ImportInstanceVolumeDetailItem[];
6895
- }
6896
- export declare namespace ImportInstanceTaskDetails {
6897
- /**
6898
- * @internal
6899
- */
6900
- const filterSensitiveLog: (obj: ImportInstanceTaskDetails) => any;
6901
- }