outpost_supported_instance_types
Creates, updates, deletes, gets or lists an outpost_supported_instance_types resource.
Overview
| Name | outpost_supported_instance_types |
| Type | Resource |
| Id | aws.outposts.outpost_supported_instance_types |
Fields
The following fields are returned by SELECT queries:
- get_outpost_supported_instance_types
| Name | Datatype | Description |
|---|---|---|
instance_type | string | The instance type. |
_vcpus | integer | The number of default VCPUs in an instance type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_outpost_supported_instance_types | select | outpost_id, region | OrderId, AssetId, MaxResults, NextToken | Gets the instance types that an Outpost can support in InstanceTypeCapacity. This will generally include instance types that are not currently configured and therefore cannot be launched with the current Outpost capacity configuration. |
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 |
|---|---|---|
outpost_id | string | The ID or ARN of the Outpost. |
region | string | AWS region (default: us-east-1) |
AssetId | string | The ID of the Outpost asset. An Outpost asset can be a single server within an Outposts rack or an Outposts server configuration. |
MaxResults | integer | |
NextToken | string | |
OrderId | string | The ID for the Amazon Web Services Outposts order. |
SELECT examples
- get_outpost_supported_instance_types
Gets the instance types that an Outpost can support in InstanceTypeCapacity. This will generally include instance types that are not currently configured and therefore cannot be launched with the current Outpost capacity configuration.
SELECT
instance_type,
_vcpus
FROM aws.outposts.outpost_supported_instance_types
WHERE outpost_id = '{{ outpost_id }}' -- required
AND region = '{{ region }}' -- required
AND OrderId = '{{ OrderId }}'
AND AssetId = '{{ AssetId }}'
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
;