Skip to main content

outpost_supported_instance_types

Creates, updates, deletes, gets or lists an outpost_supported_instance_types resource.

Overview

Nameoutpost_supported_instance_types
TypeResource
Idaws.outposts.outpost_supported_instance_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
instance_typestringThe instance type.
_vcpusintegerThe number of default VCPUs in an instance type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_outpost_supported_instance_typesselectoutpost_id, regionOrderId, AssetId, MaxResults, NextTokenGets 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.

NameDatatypeDescription
outpost_idstringThe ID or ARN of the Outpost.
regionstringAWS region (default: us-east-1)
AssetIdstringThe ID of the Outpost asset. An Outpost asset can be a single server within an Outposts rack or an Outposts server configuration.
MaxResultsinteger
NextTokenstring
OrderIdstringThe ID for the Amazon Web Services Outposts order.

SELECT examples

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 }}'
;