Class GetInstanceTypesFromInstanceRequirementsCommand
Returns a list of instance types with the specified instance attributes. You can
use the response to preview the instance types without launching instances. Note
that the response does not consider capacity.
When you specify multiple parameters, you get instance types that satisfy all of the
specified parameters. If you specify multiple values for a parameter, you get instance
types that satisfy any of the specified values.
Returns a list of instance types with the specified instance attributes. You can use the response to preview the instance types without launching instances. Note that the response does not consider capacity.
When you specify multiple parameters, you get instance types that satisfy all of the specified parameters. If you specify multiple values for a parameter, you get instance types that satisfy any of the specified values.
For more information, see Preview instance types with specified attributes, Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide, and Creating an Auto Scaling group using attribute-based instance type selection in the Amazon EC2 Auto Scaling User Guide.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, GetInstanceTypesFromInstanceRequirementsCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, GetInstanceTypesFromInstanceRequirementsCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new GetInstanceTypesFromInstanceRequirementsCommand(input); const response = await client.send(command);
GetInstanceTypesFromInstanceRequirementsCommandInput for command's
input
shape.GetInstanceTypesFromInstanceRequirementsCommandOutput for command's
response
shape.config for EC2Client's
config
shape.