orderable_instance_types
Creates, updates, deletes, gets or lists an orderable_instance_types resource.
Overview
| Name | orderable_instance_types |
| Type | Resource |
| Id | aws.outposts.orderable_instance_types |
Fields
The following fields are returned by SELECT queries:
- list_orderable_instance_types
| Name | Datatype | Description |
|---|---|---|
form_factor_configs | array | The supported form factor and Outpost generation configurations for the instance type. |
instance_type | string | The instance type. |
memory_in_mib | integer | The memory size of the instance type, in MiB. |
network_performance | string | The network performance of the instance type. |
_vcpus | integer | The number of default VCPUs in the instance type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_orderable_instance_types | select | region | OutpostGenerationFilter, MaxResults, NextToken | Lists the instance types that can be ordered for an Outpost. You can filter the results by Outpost generation. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
MaxResults | integer | The maximum page size. |
NextToken | string | The pagination token. |
OutpostGenerationFilter | string | Filters the results by Outpost generation. Specify GENERATION_1 for first-generation rack deployments or GENERATION_2 for second-generation rack deployments. |
SELECT examples
- list_orderable_instance_types
Lists the instance types that can be ordered for an Outpost. You can filter the results by Outpost generation.
SELECT
form_factor_configs,
instance_type,
memory_in_mib,
network_performance,
_vcpus
FROM aws.outposts.orderable_instance_types
WHERE region = '{{ region }}' -- required
AND OutpostGenerationFilter = '{{ OutpostGenerationFilter }}'
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
;