Skip to main content

outpost_instance_types

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

Overview

Nameoutpost_instance_types
TypeResource
Idaws.outposts.outpost_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_instance_typesselectoutpost_id, regionNextToken, MaxResultsGets the instance types for the specified Outpost.

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)
MaxResultsinteger
NextTokenstring

SELECT examples

Gets the instance types for the specified Outpost.

SELECT
instance_type,
_vcpus
FROM aws.outposts.outpost_instance_types
WHERE outpost_id = '{{ outpost_id }}' -- required
AND region = '{{ region }}' -- required
AND NextToken = '{{ NextToken }}'
AND MaxResults = '{{ MaxResults }}'
;