calculation_execution_codes
Creates, updates, deletes, gets or lists a calculation_execution_codes resource.
Overview
| Name | calculation_execution_codes |
| Type | Resource |
| Id | aws.athena.calculation_execution_codes |
Fields
The following fields are returned by SELECT queries:
- get_calculation_execution_code
| Name | Datatype | Description |
|---|---|---|
code_block | string | The unencrypted code that was executed for the calculation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_calculation_execution_code | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_calculation_execution_code
Retrieves the unencrypted code that was executed for the calculation.
SELECT
code_block
FROM aws.athena.calculation_execution_codes
WHERE region = '{{ region }}' -- required
;