@aws-sdk/client-ec2 3.449.0 → 3.450.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.
- package/README.md +9 -1
- package/dist-cjs/EC2.js +2 -0
- package/dist-cjs/commands/DescribeInstanceTopologyCommand.js +51 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_6.js +1 -4
- package/dist-cjs/models/models_7.js +4 -1
- package/dist-cjs/pagination/DescribeInstanceTopologyPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_ec2.js +180 -20
- package/dist-es/EC2.js +2 -0
- package/dist-es/commands/DescribeInstanceTopologyCommand.js +47 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_6.js +0 -3
- package/dist-es/models/models_7.js +3 -0
- package/dist-es/pagination/DescribeInstanceTopologyPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +158 -0
- package/dist-types/EC2.d.ts +7 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/CreateFleetCommand.d.ts +6 -6
- package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +2 -2
- package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +4 -4
- package/dist-types/commands/DeleteVpcPeeringConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +6 -6
- package/dist-types/commands/DescribeInstanceTopologyCommand.d.ts +148 -0
- package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +4 -4
- package/dist-types/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +1 -1
- package/dist-types/commands/DisableFastLaunchCommand.d.ts +4 -4
- package/dist-types/commands/DisableImageCommand.d.ts +3 -3
- package/dist-types/commands/EnableFastLaunchCommand.d.ts +2 -2
- package/dist-types/commands/GetCoipPoolUsageCommand.d.ts +1 -0
- package/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -2
- package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +2 -2
- package/dist-types/commands/GetSpotPlacementScoresCommand.d.ts +4 -3
- package/dist-types/commands/GetSubnetCidrReservationsCommand.d.ts +1 -2
- package/dist-types/commands/ModifyFleetCommand.d.ts +2 -2
- package/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +2 -2
- package/dist-types/commands/RequestSpotFleetCommand.d.ts +4 -4
- package/dist-types/commands/ResetFpgaImageAttributeCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +7 -15
- package/dist-types/models/models_1.d.ts +19 -3
- package/dist-types/models/models_2.d.ts +11 -21
- package/dist-types/models/models_3.d.ts +22 -24
- package/dist-types/models/models_4.d.ts +122 -64
- package/dist-types/models/models_5.d.ts +108 -155
- package/dist-types/models/models_6.d.ts +127 -71
- package/dist-types/models/models_7.d.ts +44 -1
- package/dist-types/pagination/DescribeInstanceTopologyPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +17 -0
- package/dist-types/ts3.4/EC2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeInstanceTopologyCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSpotPlacementScoresCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetSubnetCidrReservationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ResetFpgaImageAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_4.d.ts +20 -17
- package/dist-types/ts3.4/models/models_5.d.ts +18 -16
- package/dist-types/ts3.4/models/models_6.d.ts +16 -13
- package/dist-types/ts3.4/models/models_7.d.ts +14 -1
- package/dist-types/ts3.4/pagination/DescribeInstanceTopologyPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
- package/package.json +3 -3
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
+
import { DescribeInstanceTopologyRequest, DescribeInstanceTopologyResult } from "../models/models_4";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeInstanceTopologyCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeInstanceTopologyCommandInput extends DescribeInstanceTopologyRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeInstanceTopologyCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeInstanceTopologyCommandOutput extends DescribeInstanceTopologyResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Describes a tree-based hierarchy that represents the physical host placement of your
|
|
27
|
+
* EC2 instances within an Availability Zone or Local Zone. You can use this information to
|
|
28
|
+
* determine the relative proximity of your EC2 instances within the Amazon Web Services network to
|
|
29
|
+
* support your tightly coupled workloads.</p>
|
|
30
|
+
* <p class="title">
|
|
31
|
+
* <b>Limitations</b>
|
|
32
|
+
* </p>
|
|
33
|
+
* <ul>
|
|
34
|
+
* <li>
|
|
35
|
+
* <p>Supported zones</p>
|
|
36
|
+
* <ul>
|
|
37
|
+
* <li>
|
|
38
|
+
* <p>Availability Zone</p>
|
|
39
|
+
* </li>
|
|
40
|
+
* <li>
|
|
41
|
+
* <p>Local Zone</p>
|
|
42
|
+
* </li>
|
|
43
|
+
* </ul>
|
|
44
|
+
* </li>
|
|
45
|
+
* <li>
|
|
46
|
+
* <p>Supported instance types</p>
|
|
47
|
+
* <ul>
|
|
48
|
+
* <li>
|
|
49
|
+
* <p>
|
|
50
|
+
* <code>hpc6a.48xlarge</code> | <code>hpc6id.32xlarge</code> |
|
|
51
|
+
* <code>hpc7a.12xlarge</code> | <code>hpc7a.24xlarge</code> |
|
|
52
|
+
* <code>hpc7a.48xlarge</code> | <code>hpc7a.96xlarge</code> |
|
|
53
|
+
* <code>hpc7g.4xlarge</code> | <code>hpc7g.8xlarge</code> |
|
|
54
|
+
* <code>hpc7g.16xlarge</code>
|
|
55
|
+
* </p>
|
|
56
|
+
* </li>
|
|
57
|
+
* <li>
|
|
58
|
+
* <p>
|
|
59
|
+
* <code>p3dn.24xlarge</code> | <code>p4d.24xlarge</code> |
|
|
60
|
+
* <code>p4de.24xlarge</code> | <code>p5.48xlarge</code>
|
|
61
|
+
* </p>
|
|
62
|
+
* </li>
|
|
63
|
+
* <li>
|
|
64
|
+
* <p>
|
|
65
|
+
* <code>trn1.2xlarge</code> | <code>trn1.32xlarge</code> |
|
|
66
|
+
* <code>trn1n.32xlarge</code>
|
|
67
|
+
* </p>
|
|
68
|
+
* </li>
|
|
69
|
+
* </ul>
|
|
70
|
+
* </li>
|
|
71
|
+
* </ul>
|
|
72
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-topology.html">Amazon EC2 instance
|
|
73
|
+
* topology</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
74
|
+
* @example
|
|
75
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
76
|
+
* ```javascript
|
|
77
|
+
* import { EC2Client, DescribeInstanceTopologyCommand } from "@aws-sdk/client-ec2"; // ES Modules import
|
|
78
|
+
* // const { EC2Client, DescribeInstanceTopologyCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
|
|
79
|
+
* const client = new EC2Client(config);
|
|
80
|
+
* const input = { // DescribeInstanceTopologyRequest
|
|
81
|
+
* DryRun: true || false,
|
|
82
|
+
* NextToken: "STRING_VALUE",
|
|
83
|
+
* MaxResults: Number("int"),
|
|
84
|
+
* InstanceIds: [ // DescribeInstanceTopologyInstanceIdSet
|
|
85
|
+
* "STRING_VALUE",
|
|
86
|
+
* ],
|
|
87
|
+
* GroupNames: [ // DescribeInstanceTopologyGroupNameSet
|
|
88
|
+
* "STRING_VALUE",
|
|
89
|
+
* ],
|
|
90
|
+
* Filters: [ // FilterList
|
|
91
|
+
* { // Filter
|
|
92
|
+
* Name: "STRING_VALUE",
|
|
93
|
+
* Values: [ // ValueStringList
|
|
94
|
+
* "STRING_VALUE",
|
|
95
|
+
* ],
|
|
96
|
+
* },
|
|
97
|
+
* ],
|
|
98
|
+
* };
|
|
99
|
+
* const command = new DescribeInstanceTopologyCommand(input);
|
|
100
|
+
* const response = await client.send(command);
|
|
101
|
+
* // { // DescribeInstanceTopologyResult
|
|
102
|
+
* // Instances: [ // InstanceSet
|
|
103
|
+
* // { // InstanceTopology
|
|
104
|
+
* // InstanceId: "STRING_VALUE",
|
|
105
|
+
* // InstanceType: "STRING_VALUE",
|
|
106
|
+
* // GroupName: "STRING_VALUE",
|
|
107
|
+
* // NetworkNodes: [ // NetworkNodesList
|
|
108
|
+
* // "STRING_VALUE",
|
|
109
|
+
* // ],
|
|
110
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
111
|
+
* // ZoneId: "STRING_VALUE",
|
|
112
|
+
* // },
|
|
113
|
+
* // ],
|
|
114
|
+
* // NextToken: "STRING_VALUE",
|
|
115
|
+
* // };
|
|
116
|
+
*
|
|
117
|
+
* ```
|
|
118
|
+
*
|
|
119
|
+
* @param DescribeInstanceTopologyCommandInput - {@link DescribeInstanceTopologyCommandInput}
|
|
120
|
+
* @returns {@link DescribeInstanceTopologyCommandOutput}
|
|
121
|
+
* @see {@link DescribeInstanceTopologyCommandInput} for command's `input` shape.
|
|
122
|
+
* @see {@link DescribeInstanceTopologyCommandOutput} for command's `response` shape.
|
|
123
|
+
* @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
|
|
124
|
+
*
|
|
125
|
+
* @throws {@link EC2ServiceException}
|
|
126
|
+
* <p>Base exception class for all service exceptions from EC2 service.</p>
|
|
127
|
+
*
|
|
128
|
+
*/
|
|
129
|
+
export declare class DescribeInstanceTopologyCommand extends $Command<DescribeInstanceTopologyCommandInput, DescribeInstanceTopologyCommandOutput, EC2ClientResolvedConfig> {
|
|
130
|
+
readonly input: DescribeInstanceTopologyCommandInput;
|
|
131
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
constructor(input: DescribeInstanceTopologyCommandInput);
|
|
136
|
+
/**
|
|
137
|
+
* @internal
|
|
138
|
+
*/
|
|
139
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EC2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeInstanceTopologyCommandInput, DescribeInstanceTopologyCommandOutput>;
|
|
140
|
+
/**
|
|
141
|
+
* @internal
|
|
142
|
+
*/
|
|
143
|
+
private serialize;
|
|
144
|
+
/**
|
|
145
|
+
* @internal
|
|
146
|
+
*/
|
|
147
|
+
private deserialize;
|
|
148
|
+
}
|
|
@@ -284,10 +284,10 @@ export interface DescribeLaunchTemplateVersionsCommandOutput extends DescribeLau
|
|
|
284
284
|
* // Max: Number("int"),
|
|
285
285
|
* // },
|
|
286
286
|
* // AcceleratorManufacturers: [ // AcceleratorManufacturerSet
|
|
287
|
-
* // "
|
|
287
|
+
* // "amazon-web-services" || "amd" || "nvidia" || "xilinx",
|
|
288
288
|
* // ],
|
|
289
289
|
* // AcceleratorNames: [ // AcceleratorNameSet
|
|
290
|
-
* // "a100" || "
|
|
290
|
+
* // "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100",
|
|
291
291
|
* // ],
|
|
292
292
|
* // AcceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiB
|
|
293
293
|
* // Min: Number("int"),
|
|
@@ -223,10 +223,10 @@ export interface DescribeSpotFleetRequestsCommandOutput extends DescribeSpotFlee
|
|
|
223
223
|
* // Max: Number("int"),
|
|
224
224
|
* // },
|
|
225
225
|
* // AcceleratorManufacturers: [ // AcceleratorManufacturerSet
|
|
226
|
-
* // "
|
|
226
|
+
* // "amazon-web-services" || "amd" || "nvidia" || "xilinx",
|
|
227
227
|
* // ],
|
|
228
228
|
* // AcceleratorNames: [ // AcceleratorNameSet
|
|
229
|
-
* // "a100" || "
|
|
229
|
+
* // "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100",
|
|
230
230
|
* // ],
|
|
231
231
|
* // AcceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiB
|
|
232
232
|
* // Min: Number("int"),
|
|
@@ -308,10 +308,10 @@ export interface DescribeSpotFleetRequestsCommandOutput extends DescribeSpotFlee
|
|
|
308
308
|
* // Max: Number("int"),
|
|
309
309
|
* // },
|
|
310
310
|
* // AcceleratorManufacturers: [
|
|
311
|
-
* // "
|
|
311
|
+
* // "amazon-web-services" || "amd" || "nvidia" || "xilinx",
|
|
312
312
|
* // ],
|
|
313
313
|
* // AcceleratorNames: [
|
|
314
|
-
* // "a100" || "
|
|
314
|
+
* // "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100",
|
|
315
315
|
* // ],
|
|
316
316
|
* // AcceleratorTotalMemoryMiB: {
|
|
317
317
|
* // Min: Number("int"),
|
|
@@ -2,7 +2,8 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
-
import { DescribeTransitGatewayPolicyTablesRequest
|
|
5
|
+
import { DescribeTransitGatewayPolicyTablesRequest } from "../models/models_4";
|
|
6
|
+
import { DescribeTransitGatewayPolicyTablesResult } from "../models/models_5";
|
|
6
7
|
/**
|
|
7
8
|
* @public
|
|
8
9
|
*/
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
-
import { DescribeTransitGatewayRouteTableAnnouncementsRequest, DescribeTransitGatewayRouteTableAnnouncementsResult } from "../models/
|
|
5
|
+
import { DescribeTransitGatewayRouteTableAnnouncementsRequest, DescribeTransitGatewayRouteTableAnnouncementsResult } from "../models/models_5";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -23,11 +23,11 @@ export interface DisableFastLaunchCommandOutput extends DisableFastLaunchResult,
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Discontinue
|
|
27
|
-
*
|
|
28
|
-
* instance.
|
|
26
|
+
* <p>Discontinue Windows fast launch for a Windows AMI, and clean up existing pre-provisioned snapshots.
|
|
27
|
+
* After you disable Windows fast launch, the AMI uses the standard launch process for each
|
|
28
|
+
* new instance. Amazon EC2 must remove all pre-provisioned snapshots before you can enable Windows fast launch again.</p>
|
|
29
29
|
* <note>
|
|
30
|
-
* <p>
|
|
30
|
+
* <p>You can only change these settings for Windows AMIs that you own or that have been shared with you.</p>
|
|
31
31
|
* </note>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,9 +25,9 @@ export interface DisableImageCommandOutput extends DisableImageResult, __Metadat
|
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Sets the AMI state to <code>disabled</code> and removes all launch permissions from the
|
|
27
27
|
* AMI. A disabled AMI can't be used for instance launches.</p>
|
|
28
|
-
* <p>A disabled AMI can't be shared. If
|
|
29
|
-
*
|
|
30
|
-
*
|
|
28
|
+
* <p>A disabled AMI can't be shared. If an AMI was public or previously shared, it is made
|
|
29
|
+
* private. If an AMI was shared with an Amazon Web Services account, organization, or Organizational Unit,
|
|
30
|
+
* they lose access to the disabled AMI. </p>
|
|
31
31
|
* <p>A disabled AMI does not appear in <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImages.html">DescribeImages</a> API calls by
|
|
32
32
|
* default.</p>
|
|
33
33
|
* <p>Only the AMI owner can disable an AMI.</p>
|
|
@@ -23,14 +23,14 @@ export interface EnableFastLaunchCommandOutput extends EnableFastLaunchResult, _
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>When you enable
|
|
26
|
+
* <p>When you enable Windows fast launch for a Windows AMI, images are pre-provisioned,
|
|
27
27
|
* using snapshots to launch instances up to 65% faster. To create the optimized Windows
|
|
28
28
|
* image, Amazon EC2 launches an instance and runs through Sysprep steps, rebooting as required.
|
|
29
29
|
* Then it creates a set of reserved snapshots that are used for subsequent launches. The
|
|
30
30
|
* reserved snapshots are automatically replenished as they are used, depending on your
|
|
31
31
|
* settings for launch frequency.</p>
|
|
32
32
|
* <note>
|
|
33
|
-
* <p>
|
|
33
|
+
* <p>You can only change these settings for Windows AMIs that you own or that have been shared with you.</p>
|
|
34
34
|
* </note>
|
|
35
35
|
* @example
|
|
36
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -98,10 +98,10 @@ export interface GetInstanceTypesFromInstanceRequirementsCommandOutput extends G
|
|
|
98
98
|
* Max: Number("int"),
|
|
99
99
|
* },
|
|
100
100
|
* AcceleratorManufacturers: [ // AcceleratorManufacturerSet
|
|
101
|
-
* "
|
|
101
|
+
* "amazon-web-services" || "amd" || "nvidia" || "xilinx",
|
|
102
102
|
* ],
|
|
103
103
|
* AcceleratorNames: [ // AcceleratorNameSet
|
|
104
|
-
* "a100" || "
|
|
104
|
+
* "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100",
|
|
105
105
|
* ],
|
|
106
106
|
* AcceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiBRequest
|
|
107
107
|
* Min: Number("int"),
|
|
@@ -262,10 +262,10 @@ export interface GetLaunchTemplateDataCommandOutput extends GetLaunchTemplateDat
|
|
|
262
262
|
* // Max: Number("int"),
|
|
263
263
|
* // },
|
|
264
264
|
* // AcceleratorManufacturers: [ // AcceleratorManufacturerSet
|
|
265
|
-
* // "
|
|
265
|
+
* // "amazon-web-services" || "amd" || "nvidia" || "xilinx",
|
|
266
266
|
* // ],
|
|
267
267
|
* // AcceleratorNames: [ // AcceleratorNameSet
|
|
268
|
-
* // "a100" || "
|
|
268
|
+
* // "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100",
|
|
269
269
|
* // ],
|
|
270
270
|
* // AcceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiB
|
|
271
271
|
* // Min: Number("int"),
|
|
@@ -2,7 +2,8 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
-
import { GetSpotPlacementScoresRequest
|
|
5
|
+
import { GetSpotPlacementScoresRequest } from "../models/models_5";
|
|
6
|
+
import { GetSpotPlacementScoresResult } from "../models/models_6";
|
|
6
7
|
/**
|
|
7
8
|
* @public
|
|
8
9
|
*/
|
|
@@ -105,10 +106,10 @@ export interface GetSpotPlacementScoresCommandOutput extends GetSpotPlacementSco
|
|
|
105
106
|
* Max: Number("int"),
|
|
106
107
|
* },
|
|
107
108
|
* AcceleratorManufacturers: [ // AcceleratorManufacturerSet
|
|
108
|
-
* "
|
|
109
|
+
* "amazon-web-services" || "amd" || "nvidia" || "xilinx",
|
|
109
110
|
* ],
|
|
110
111
|
* AcceleratorNames: [ // AcceleratorNameSet
|
|
111
|
-
* "a100" || "
|
|
112
|
+
* "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100",
|
|
112
113
|
* ],
|
|
113
114
|
* AcceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiBRequest
|
|
114
115
|
* Min: Number("int"),
|
|
@@ -2,8 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
-
import { GetSubnetCidrReservationsRequest } from "../models/
|
|
6
|
-
import { GetSubnetCidrReservationsResult } from "../models/models_6";
|
|
5
|
+
import { GetSubnetCidrReservationsRequest, GetSubnetCidrReservationsResult } from "../models/models_6";
|
|
7
6
|
/**
|
|
8
7
|
* @public
|
|
9
8
|
*/
|
|
@@ -131,10 +131,10 @@ export interface ModifyFleetCommandOutput extends ModifyFleetResult, __MetadataB
|
|
|
131
131
|
* Max: Number("int"),
|
|
132
132
|
* },
|
|
133
133
|
* AcceleratorManufacturers: [ // AcceleratorManufacturerSet
|
|
134
|
-
* "
|
|
134
|
+
* "amazon-web-services" || "amd" || "nvidia" || "xilinx",
|
|
135
135
|
* ],
|
|
136
136
|
* AcceleratorNames: [ // AcceleratorNameSet
|
|
137
|
-
* "a100" || "
|
|
137
|
+
* "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100",
|
|
138
138
|
* ],
|
|
139
139
|
* AcceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiBRequest
|
|
140
140
|
* Min: Number("int"),
|
|
@@ -122,10 +122,10 @@ export interface ModifySpotFleetRequestCommandOutput extends ModifySpotFleetRequ
|
|
|
122
122
|
* Max: Number("int"),
|
|
123
123
|
* },
|
|
124
124
|
* AcceleratorManufacturers: [ // AcceleratorManufacturerSet
|
|
125
|
-
* "
|
|
125
|
+
* "amazon-web-services" || "amd" || "nvidia" || "xilinx",
|
|
126
126
|
* ],
|
|
127
127
|
* AcceleratorNames: [ // AcceleratorNameSet
|
|
128
|
-
* "a100" || "
|
|
128
|
+
* "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100",
|
|
129
129
|
* ],
|
|
130
130
|
* AcceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiB
|
|
131
131
|
* Min: Number("int"),
|
|
@@ -233,10 +233,10 @@ export interface RequestSpotFleetCommandOutput extends RequestSpotFleetResponse,
|
|
|
233
233
|
* Max: Number("int"),
|
|
234
234
|
* },
|
|
235
235
|
* AcceleratorManufacturers: [ // AcceleratorManufacturerSet
|
|
236
|
-
* "
|
|
236
|
+
* "amazon-web-services" || "amd" || "nvidia" || "xilinx",
|
|
237
237
|
* ],
|
|
238
238
|
* AcceleratorNames: [ // AcceleratorNameSet
|
|
239
|
-
* "a100" || "
|
|
239
|
+
* "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100",
|
|
240
240
|
* ],
|
|
241
241
|
* AcceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiB
|
|
242
242
|
* Min: Number("int"),
|
|
@@ -318,10 +318,10 @@ export interface RequestSpotFleetCommandOutput extends RequestSpotFleetResponse,
|
|
|
318
318
|
* Max: Number("int"),
|
|
319
319
|
* },
|
|
320
320
|
* AcceleratorManufacturers: [
|
|
321
|
-
* "
|
|
321
|
+
* "amazon-web-services" || "amd" || "nvidia" || "xilinx",
|
|
322
322
|
* ],
|
|
323
323
|
* AcceleratorNames: [
|
|
324
|
-
* "a100" || "
|
|
324
|
+
* "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100",
|
|
325
325
|
* ],
|
|
326
326
|
* AcceleratorTotalMemoryMiB: {
|
|
327
327
|
* Min: Number("int"),
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
-
import { ResetFpgaImageAttributeRequest, ResetFpgaImageAttributeResult } from "../models/
|
|
5
|
+
import { ResetFpgaImageAttributeRequest, ResetFpgaImageAttributeResult } from "../models/models_7";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -266,6 +266,7 @@ export * from "./DescribeInstanceCreditSpecificationsCommand";
|
|
|
266
266
|
export * from "./DescribeInstanceEventNotificationAttributesCommand";
|
|
267
267
|
export * from "./DescribeInstanceEventWindowsCommand";
|
|
268
268
|
export * from "./DescribeInstanceStatusCommand";
|
|
269
|
+
export * from "./DescribeInstanceTopologyCommand";
|
|
269
270
|
export * from "./DescribeInstanceTypeOfferingsCommand";
|
|
270
271
|
export * from "./DescribeInstanceTypesCommand";
|
|
271
272
|
export * from "./DescribeInstancesCommand";
|
|
@@ -4987,7 +4987,7 @@ export interface VerifiedAccessInstance {
|
|
|
4987
4987
|
Tags?: Tag[];
|
|
4988
4988
|
/**
|
|
4989
4989
|
* @public
|
|
4990
|
-
* <p>
|
|
4990
|
+
* <p>Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.</p>
|
|
4991
4991
|
*/
|
|
4992
4992
|
FipsEnabled?: boolean;
|
|
4993
4993
|
}
|
|
@@ -5046,25 +5046,19 @@ export interface OidcOptions {
|
|
|
5046
5046
|
}
|
|
5047
5047
|
/**
|
|
5048
5048
|
* @public
|
|
5049
|
-
* <p>
|
|
5050
|
-
* Describes the options in use for server side encryption.
|
|
5051
|
-
* </p>
|
|
5049
|
+
* <p>The options in use for server side encryption.</p>
|
|
5052
5050
|
*/
|
|
5053
5051
|
export interface VerifiedAccessSseSpecificationResponse {
|
|
5054
5052
|
/**
|
|
5055
5053
|
* @public
|
|
5056
|
-
* <p>
|
|
5057
|
-
* Describes the use of customer managed KMS keys for server side encryption.
|
|
5058
|
-
* </p>
|
|
5054
|
+
* <p>Indicates whether customer managed KMS keys are in use for server side encryption.</p>
|
|
5059
5055
|
* <p>Valid values: <code>True</code> | <code>False</code>
|
|
5060
5056
|
* </p>
|
|
5061
5057
|
*/
|
|
5062
5058
|
CustomerManagedKeyEnabled?: boolean;
|
|
5063
5059
|
/**
|
|
5064
5060
|
* @public
|
|
5065
|
-
* <p>
|
|
5066
|
-
* Describes the ARN of the KMS key.
|
|
5067
|
-
* </p>
|
|
5061
|
+
* <p>The ARN of the KMS key.</p>
|
|
5068
5062
|
*/
|
|
5069
5063
|
KmsKeyArn?: string;
|
|
5070
5064
|
}
|
|
@@ -5130,9 +5124,7 @@ export interface VerifiedAccessTrustProvider {
|
|
|
5130
5124
|
Tags?: Tag[];
|
|
5131
5125
|
/**
|
|
5132
5126
|
* @public
|
|
5133
|
-
* <p>
|
|
5134
|
-
* Describes the options in use for server side encryption.
|
|
5135
|
-
* </p>
|
|
5127
|
+
* <p>The options in use for server side encryption.</p>
|
|
5136
5128
|
*/
|
|
5137
5129
|
SseSpecification?: VerifiedAccessSseSpecificationResponse;
|
|
5138
5130
|
}
|
|
@@ -5142,12 +5134,12 @@ export interface VerifiedAccessTrustProvider {
|
|
|
5142
5134
|
export interface AttachVerifiedAccessTrustProviderResult {
|
|
5143
5135
|
/**
|
|
5144
5136
|
* @public
|
|
5145
|
-
* <p>
|
|
5137
|
+
* <p>Details about the Verified Access trust provider.</p>
|
|
5146
5138
|
*/
|
|
5147
5139
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
|
|
5148
5140
|
/**
|
|
5149
5141
|
* @public
|
|
5150
|
-
* <p>
|
|
5142
|
+
* <p>Details about the Verified Access instance.</p>
|
|
5151
5143
|
*/
|
|
5152
5144
|
VerifiedAccessInstance?: VerifiedAccessInstance;
|
|
5153
5145
|
}
|
|
@@ -3728,9 +3728,25 @@ export interface BlockDeviceMapping {
|
|
|
3728
3728
|
export interface CreateImageRequest {
|
|
3729
3729
|
/**
|
|
3730
3730
|
* @public
|
|
3731
|
-
* <p>The block device mappings
|
|
3732
|
-
*
|
|
3733
|
-
*
|
|
3731
|
+
* <p>The block device mappings.</p>
|
|
3732
|
+
* <p>When using the CreateImage action:</p>
|
|
3733
|
+
* <ul>
|
|
3734
|
+
* <li>
|
|
3735
|
+
* <p>You can't change the volume size using the VolumeSize parameter. If you want a
|
|
3736
|
+
* different volume size, you must first change the volume size of the source
|
|
3737
|
+
* instance.</p>
|
|
3738
|
+
* </li>
|
|
3739
|
+
* <li>
|
|
3740
|
+
* <p>You can't modify the encryption status of existing volumes or snapshots. To create an
|
|
3741
|
+
* AMI with volumes or snapshots that have a different encryption status (for example, where
|
|
3742
|
+
* the source volume and snapshots are unencrypted, and you want to create an AMI with
|
|
3743
|
+
* encrypted volumes or snapshots), use the <a>CopyImage</a> action.</p>
|
|
3744
|
+
* </li>
|
|
3745
|
+
* <li>
|
|
3746
|
+
* <p>The only option that can be changed for existing mappings or snapshots is
|
|
3747
|
+
* <code>DeleteOnTermination</code>.</p>
|
|
3748
|
+
* </li>
|
|
3749
|
+
* </ul>
|
|
3734
3750
|
*/
|
|
3735
3751
|
BlockDeviceMappings?: BlockDeviceMapping[];
|
|
3736
3752
|
/**
|
|
@@ -3693,7 +3693,7 @@ export interface CreateVerifiedAccessEndpointRequest {
|
|
|
3693
3693
|
EndpointDomainPrefix: string | undefined;
|
|
3694
3694
|
/**
|
|
3695
3695
|
* @public
|
|
3696
|
-
* <p>The IDs of the security groups to associate with the Verified Access endpoint
|
|
3696
|
+
* <p>The IDs of the security groups to associate with the Verified Access endpoint. Required if <code>AttachmentType</code> is set to <code>vpc</code>.</p>
|
|
3697
3697
|
*/
|
|
3698
3698
|
SecurityGroupIds?: string[];
|
|
3699
3699
|
/**
|
|
@@ -3738,9 +3738,7 @@ export interface CreateVerifiedAccessEndpointRequest {
|
|
|
3738
3738
|
DryRun?: boolean;
|
|
3739
3739
|
/**
|
|
3740
3740
|
* @public
|
|
3741
|
-
* <p>
|
|
3742
|
-
* Options for server side encryption.
|
|
3743
|
-
* </p>
|
|
3741
|
+
* <p>The options for server side encryption.</p>
|
|
3744
3742
|
*/
|
|
3745
3743
|
SseSpecification?: VerifiedAccessSseSpecificationRequest;
|
|
3746
3744
|
}
|
|
@@ -3926,9 +3924,7 @@ export interface VerifiedAccessEndpoint {
|
|
|
3926
3924
|
Tags?: Tag[];
|
|
3927
3925
|
/**
|
|
3928
3926
|
* @public
|
|
3929
|
-
* <p>
|
|
3930
|
-
* Describes the options in use for server side encryption.
|
|
3931
|
-
* </p>
|
|
3927
|
+
* <p>The options in use for server side encryption.</p>
|
|
3932
3928
|
*/
|
|
3933
3929
|
SseSpecification?: VerifiedAccessSseSpecificationResponse;
|
|
3934
3930
|
}
|
|
@@ -3938,7 +3934,7 @@ export interface VerifiedAccessEndpoint {
|
|
|
3938
3934
|
export interface CreateVerifiedAccessEndpointResult {
|
|
3939
3935
|
/**
|
|
3940
3936
|
* @public
|
|
3941
|
-
* <p>
|
|
3937
|
+
* <p>Details about the Verified Access endpoint.</p>
|
|
3942
3938
|
*/
|
|
3943
3939
|
VerifiedAccessEndpoint?: VerifiedAccessEndpoint;
|
|
3944
3940
|
}
|
|
@@ -3981,9 +3977,7 @@ export interface CreateVerifiedAccessGroupRequest {
|
|
|
3981
3977
|
DryRun?: boolean;
|
|
3982
3978
|
/**
|
|
3983
3979
|
* @public
|
|
3984
|
-
* <p>
|
|
3985
|
-
* Options for server side encryption.
|
|
3986
|
-
* </p>
|
|
3980
|
+
* <p>The options for server side encryption.</p>
|
|
3987
3981
|
*/
|
|
3988
3982
|
SseSpecification?: VerifiedAccessSseSpecificationRequest;
|
|
3989
3983
|
}
|
|
@@ -4039,9 +4033,7 @@ export interface VerifiedAccessGroup {
|
|
|
4039
4033
|
Tags?: Tag[];
|
|
4040
4034
|
/**
|
|
4041
4035
|
* @public
|
|
4042
|
-
* <p>
|
|
4043
|
-
* Describes the options in use for server side encryption.
|
|
4044
|
-
* </p>
|
|
4036
|
+
* <p>The options in use for server side encryption.</p>
|
|
4045
4037
|
*/
|
|
4046
4038
|
SseSpecification?: VerifiedAccessSseSpecificationResponse;
|
|
4047
4039
|
}
|
|
@@ -4051,7 +4043,7 @@ export interface VerifiedAccessGroup {
|
|
|
4051
4043
|
export interface CreateVerifiedAccessGroupResult {
|
|
4052
4044
|
/**
|
|
4053
4045
|
* @public
|
|
4054
|
-
* <p>
|
|
4046
|
+
* <p>Details about the Verified Access group.</p>
|
|
4055
4047
|
*/
|
|
4056
4048
|
VerifiedAccessGroup?: VerifiedAccessGroup;
|
|
4057
4049
|
}
|
|
@@ -4094,7 +4086,7 @@ export interface CreateVerifiedAccessInstanceRequest {
|
|
|
4094
4086
|
export interface CreateVerifiedAccessInstanceResult {
|
|
4095
4087
|
/**
|
|
4096
4088
|
* @public
|
|
4097
|
-
* <p>
|
|
4089
|
+
* <p>Details about the Verified Access instance.</p>
|
|
4098
4090
|
*/
|
|
4099
4091
|
VerifiedAccessInstance?: VerifiedAccessInstance;
|
|
4100
4092
|
}
|
|
@@ -4215,9 +4207,7 @@ export interface CreateVerifiedAccessTrustProviderRequest {
|
|
|
4215
4207
|
DryRun?: boolean;
|
|
4216
4208
|
/**
|
|
4217
4209
|
* @public
|
|
4218
|
-
* <p>
|
|
4219
|
-
* Options for server side encryption.
|
|
4220
|
-
* </p>
|
|
4210
|
+
* <p>The options for server side encryption.</p>
|
|
4221
4211
|
*/
|
|
4222
4212
|
SseSpecification?: VerifiedAccessSseSpecificationRequest;
|
|
4223
4213
|
}
|
|
@@ -4227,7 +4217,7 @@ export interface CreateVerifiedAccessTrustProviderRequest {
|
|
|
4227
4217
|
export interface CreateVerifiedAccessTrustProviderResult {
|
|
4228
4218
|
/**
|
|
4229
4219
|
* @public
|
|
4230
|
-
* <p>
|
|
4220
|
+
* <p>Details about the Verified Access trust provider.</p>
|
|
4231
4221
|
*/
|
|
4232
4222
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
|
|
4233
4223
|
}
|
|
@@ -6272,7 +6262,7 @@ export interface VgwTelemetry {
|
|
|
6272
6262
|
AcceptedRouteCount?: number;
|
|
6273
6263
|
/**
|
|
6274
6264
|
* @public
|
|
6275
|
-
* <p>The date and time of the last change in status.</p>
|
|
6265
|
+
* <p>The date and time of the last change in status. This field is updated when changes in IKE (Phase 1), IPSec (Phase 2), or BGP status are detected.</p>
|
|
6276
6266
|
*/
|
|
6277
6267
|
LastStatusChange?: Date;
|
|
6278
6268
|
/**
|