Skip to main content

application_dpu_sizes

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

Overview

Nameapplication_dpu_sizes
TypeResource
Idaws.athena.application_dpu_sizes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
application_dpu_sizesarrayA list of the supported DPU sizes that the application runtime supports.
next_tokenstringA 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_application_dpu_sizesselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;