Skip to main content

calculation_execution_codes

Creates, updates, deletes, gets or lists a calculation_execution_codes resource.

Overview

Namecalculation_execution_codes
TypeResource
Idaws.athena.calculation_execution_codes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
code_blockstringThe unencrypted code that was executed for the calculation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_calculation_execution_codeselectregionRetrieves the unencrypted code that was executed for the calculation.

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 the unencrypted code that was executed for the calculation.

SELECT
code_block
FROM aws.athena.calculation_execution_codes
WHERE region = '{{ region }}' -- required
;