Skip to main content

instance_types

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

Overview

Nameinstance_types
TypeResource
Idaws.workspaces_instances.instance_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
instance_typestringUnique identifier for the WorkSpace Instance type. (pattern: <code>([a-z0-9-]+).([a-z0-9]+)</code>)
supported_instance_configurationsarrayLists all valid combinations of tenancy, platform type, and billing mode supported for the specific WorkSpace Instance type. Contains the complete set of configuration options available for this instance type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_instance_typesselectregionRetrieves a list of instance types supported by Amazon WorkSpaces Instances, enabling precise workspace infrastructure 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
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves a list of instance types supported by Amazon WorkSpaces Instances, enabling precise workspace infrastructure configuration.

SELECT
instance_type,
supported_instance_configurations
FROM aws.workspaces_instances.instance_types
WHERE region = '{{ region }}' -- required
;