supported_instance_types
Creates, updates, deletes, gets or lists a supported_instance_types resource.
Overview
| Name | supported_instance_types |
| Type | Resource |
| Id | aws.emr.supported_instance_types |
Fields
The following fields are returned by SELECT queries:
- list_supported_instance_types
| Name | Datatype | Description |
|---|---|---|
marker | string | The pagination token that marks the next set of results to retrieve. |
supported_instance_types | array | The list of instance types that the release specified in ListSupportedInstanceTypesInput$ReleaseLabel supports, filtered by Amazon Web Services Region. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_supported_instance_types | select | region | A list of the instance types that Amazon EMR supports. You can filter the list by Amazon Web Services Region and Amazon EMR release. |
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_supported_instance_types
A list of the instance types that Amazon EMR supports. You can filter the list by Amazon Web Services Region and Amazon EMR release.
SELECT
marker,
supported_instance_types
FROM aws.emr.supported_instance_types
WHERE region = '{{ region }}' -- required
;