instance_types
Creates, updates, deletes, gets or lists an instance_types resource.
Overview
| Name | instance_types |
| Type | Resource |
| Id | aws.workspaces_instances.instance_types |
Fields
The following fields are returned by SELECT queries:
- list_instance_types
| Name | Datatype | Description |
|---|---|---|
instance_type | string | Unique identifier for the WorkSpace Instance type. (pattern: <code>([a-z0-9-]+).([a-z0-9]+)</code>) |
supported_instance_configurations | array | Lists 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_instance_types | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_instance_types
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
;