application_dpu_sizes
Creates, updates, deletes, gets or lists an application_dpu_sizes resource.
Overview
| Name | application_dpu_sizes |
| Type | Resource |
| Id | aws.athena.application_dpu_sizes |
Fields
The following fields are returned by SELECT queries:
- list_application_dpu_sizes
| Name | Datatype | Description |
|---|---|---|
application_dpu_sizes | array | A list of the supported DPU sizes that the application runtime supports. |
next_token | string | A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_application_dpu_sizes | select | region | Returns the supported DPU sizes for the supported application runtimes (for example, Athena notebook version 1). |
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_application_dpu_sizes
Returns the supported DPU sizes for the supported application runtimes (for example, Athena notebook version 1).
SELECT
application_dpu_sizes,
next_token
FROM aws.athena.application_dpu_sizes
WHERE region = '{{ region }}' -- required
;