Amazon Athena queries data in Amazon S3 with SQL. Start a query, check its execution status, then retrieve the results; cancel a query when needed. Run parameterized queries with execution parameters and prepared statements, reuse recent results, and read runtime statistics after a query completes. The integration also manages named queries, browses data catalogs, databases, and table schemas, and inspects workgroup configuration. Connect with an AWS access key and secret access key.
Integrate AWS Athena into workflows. Execute SQL queries against data in S3, check query status and runtime statistics, retrieve results, manage named queries and prepared statements, and inspect data catalogs, databases, tables, and workgroups. Requires AWS access key and secret access key.
Start an SQL query execution in AWS Athena
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
queryString | string | Yes | SQL query string to execute |
database | string | No | Database name within the catalog |
catalog | string | No | Data catalog name (default: AwsDataCatalog) |
outputLocation | string | No | S3 output location for query results (e.g., s3://bucket/path/) |
workGroup | string | No | Workgroup to execute the query in (default: primary) |
executionParameters | json | No | Values for ? placeholders in a parameterized query or EXECUTE statement, applied in order. Pass a JSON array of strings (e.g. ["2024-01-01", "US"]); a plain comma-separated list is also accepted when no value contains a comma |
resultReuseEnabled | boolean | No | Reuse a previous result of the same query instead of re-scanning data (default: false) |
resultReuseMaxAgeInMinutes | number | No | Maximum age in minutes of a previous result eligible for reuse (0-10080, default: 60) |
| Parameter | Type | Description |
|---|
queryExecutionId | string | Unique ID of the started query execution |
Get the status and details of an Athena query execution
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
queryExecutionId | string | Yes | Query execution ID to check |
| Parameter | Type | Description |
|---|
queryExecutionId | string | Query execution ID |
query | string | SQL query string |
state | string | Query state (QUEUED, RUNNING, SUCCEEDED, FAILED, CANCELLED) |
stateChangeReason | string | Reason for state change (e.g., error message) |
statementType | string | Statement type (DDL, DML, UTILITY) |
database | string | Database name |
catalog | string | Data catalog name |
workGroup | string | Workgroup name |
submissionDateTime | number | Query submission time (Unix epoch ms) |
completionDateTime | number | Query completion time (Unix epoch ms) |
dataScannedInBytes | number | Amount of data scanned in bytes |
engineExecutionTimeInMillis | number | Engine execution time in milliseconds |
queryPlanningTimeInMillis | number | Query planning time in milliseconds |
queryQueueTimeInMillis | number | Time the query spent in queue in milliseconds |
totalExecutionTimeInMillis | number | Total execution time in milliseconds |
outputLocation | string | S3 location of query results |
Retrieve the results of a completed Athena query execution
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
queryExecutionId | string | Yes | Query execution ID to get results for |
maxResults | number | No | Maximum number of rows to return (1-999) |
nextToken | string | No | Pagination token from a previous request |
| Parameter | Type | Description |
|---|
columns | array | Column metadata (name and type) |
rows | array | Result rows as key-value objects |
nextToken | string | Pagination token for next page of results |
updateCount | number | Number of rows affected (for INSERT/UPDATE statements) |
Stop a running Athena query execution
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
queryExecutionId | string | Yes | Query execution ID to stop |
| Parameter | Type | Description |
|---|
success | boolean | Whether the query was successfully stopped |
List recent Athena query execution IDs
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
workGroup | string | No | Workgroup to list executions for (default: primary) |
maxResults | number | No | Maximum number of results (0-50) |
nextToken | string | No | Pagination token from a previous request |
| Parameter | Type | Description |
|---|
queryExecutionIds | array | List of query execution IDs |
nextToken | string | Pagination token for next page |
Get the status and details of up to 50 Athena query executions in one call
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
queryExecutionIds | string | Yes | Comma-separated query execution IDs to check (up to 50) |
| Parameter | Type | Description |
|---|
queryExecutions | array | Details for each successfully retrieved query execution |
↳ queryExecutionId | string | Query execution ID |
↳ query | string | SQL query string |
↳ state | string | Query state (QUEUED, RUNNING, SUCCEEDED, FAILED, CANCELLED) |
↳ stateChangeReason | string | Reason for state change |
↳ statementType | string | Statement type (DDL, DML, UTILITY) |
↳ database | string | Database name |
↳ catalog | string | Data catalog name |
↳ workGroup | string | Workgroup name |
↳ submissionDateTime | number | Query submission time (Unix epoch ms) |
↳ completionDateTime | number | Query completion time (Unix epoch ms) |
↳ dataScannedInBytes | number | Amount of data scanned in bytes |
↳ engineExecutionTimeInMillis | number | Engine execution time in milliseconds |
↳ queryPlanningTimeInMillis | number | Query planning time in milliseconds |
↳ queryQueueTimeInMillis | number | Time the query spent in queue in milliseconds |
↳ totalExecutionTimeInMillis | number | Total execution time in milliseconds |
↳ outputLocation | string | S3 location of query results |
unprocessedQueryExecutionIds | array | Query execution IDs that could not be retrieved, with error details |
↳ queryExecutionId | string | Query execution ID |
↳ errorCode | string | Error code |
↳ errorMessage | string | Error message |
Create a saved/named query in AWS Athena
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
name | string | Yes | Name for the saved query |
database | string | Yes | Database the query runs against |
queryString | string | Yes | SQL query string to save |
description | string | No | Description of the named query |
workGroup | string | No | Workgroup to create the named query in |
| Parameter | Type | Description |
|---|
namedQueryId | string | ID of the created named query |
Get details of a saved/named query in AWS Athena
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
namedQueryId | string | Yes | Named query ID to retrieve |
| Parameter | Type | Description |
|---|
namedQueryId | string | Named query ID |
name | string | Name of the saved query |
description | string | Query description |
database | string | Database the query runs against |
queryString | string | SQL query string |
workGroup | string | Workgroup name |
List saved/named query IDs in AWS Athena
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
workGroup | string | No | Workgroup to list named queries for |
maxResults | number | No | Maximum number of results (0-50) |
nextToken | string | No | Pagination token from a previous request |
| Parameter | Type | Description |
|---|
namedQueryIds | array | List of named query IDs |
nextToken | string | Pagination token for next page |
Delete a saved/named query in AWS Athena
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
namedQueryId | string | Yes | Named query ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the named query was successfully deleted |
List the databases available in an Athena data catalog
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
catalogName | string | Yes | Data catalog name to list databases from (e.g., AwsDataCatalog) |
workGroup | string | No | Workgroup for which the metadata is being fetched (required for IAM Identity Center enabled catalogs) |
maxResults | number | No | Maximum number of results (1-50) |
nextToken | string | No | Pagination token from a previous request |
| Parameter | Type | Description |
|---|
databases | array | List of databases (name, description, parameters) |
↳ name | string | Database name |
↳ description | string | Database description |
↳ parameters | json | Key/value properties set on the database |
nextToken | string | Pagination token for next page |
List tables and their column/partition metadata for an Athena database
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
catalogName | string | Yes | Data catalog name (e.g., AwsDataCatalog) |
databaseName | string | Yes | Database name to list tables from |
expression | string | No | Regex filter that pattern-matches table names |
workGroup | string | No | Workgroup for which the metadata is being fetched (required for IAM Identity Center enabled catalogs) |
maxResults | number | No | Maximum number of results (1-50) |
nextToken | string | No | Pagination token from a previous request |
| Parameter | Type | Description |
|---|
tables | array | Table metadata (name, type, columns, partition keys, parameters) |
↳ name | string | Table name |
↳ tableType | string | Table type |
↳ createTime | number | Table creation time (Unix epoch ms) |
↳ lastAccessTime | number | Table last access time (Unix epoch ms) |
↳ columns | array | Column definitions |
↳ name | string | Column name |
↳ type | string | Column data type |
↳ comment | string | Column comment |
↳ partitionKeys | array | Partition key definitions |
↳ name | string | Partition key name |
↳ type | string | Partition key data type |
↳ comment | string | Partition key comment |
↳ parameters | json | Key/value table properties (e.g., classification, location) |
nextToken | string | Pagination token for next page |
Get runtime statistics (timeline, row counts, and output stage) for a completed Athena query execution
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
queryExecutionId | string | Yes | Query execution ID to get runtime statistics for |
| Parameter | Type | Description |
|---|
queryExecutionId | string | Query execution ID |
timeline | json | Timing breakdown in milliseconds (available once the query has SUCCEEDED or FAILED) |
↳ queryQueueTimeInMillis | number | Time spent in queue |
↳ servicePreProcessingTimeInMillis | number | Service pre-processing time |
↳ queryPlanningTimeInMillis | number | Query planning time |
↳ engineExecutionTimeInMillis | number | Engine execution time |
↳ serviceProcessingTimeInMillis | number | Service processing time |
↳ totalExecutionTimeInMillis | number | Total execution time |
rowStatistics | json | Row and byte counts (updated asynchronously; may be null shortly after completion) |
↳ inputRows | number | Rows read |
↳ inputBytes | number | Bytes read |
↳ outputRows | number | Rows produced |
↳ outputBytes | number | Bytes produced |
outputStage | json | Summary of the final query stage |
↳ stageId | number | Stage identifier |
↳ state | string | Stage state |
↳ inputRows | number | Rows read by the stage |
↳ inputBytes | number | Bytes read by the stage |
↳ outputRows | number | Rows produced by the stage |
↳ outputBytes | number | Bytes produced by the stage |
↳ executionTime | number | Stage execution time in milliseconds |
↳ subStageCount | number | Number of direct sub-stages |
Get the details of up to 50 Athena named queries by ID in a single call
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
namedQueryIds | string | Yes | Comma-separated named query IDs (up to 50) |
| Parameter | Type | Description |
|---|
namedQueries | array | Details for each named query that was found |
↳ namedQueryId | string | Named query ID |
↳ name | string | Named query name |
↳ description | string | Named query description |
↳ database | string | Database the query runs against |
↳ queryString | string | SQL text of the named query |
↳ workGroup | string | Workgroup the query is saved in |
unprocessedNamedQueryIds | array | Named query IDs that could not be retrieved, with error details |
↳ namedQueryId | string | Named query ID |
↳ errorCode | string | Error code |
↳ errorMessage | string | Error message |
Update the name, description, or SQL of an existing Athena named query (database and workgroup cannot change)
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
namedQueryId | string | Yes | Named query ID to update |
name | string | Yes | New name for the query (1-128 characters) |
queryString | string | Yes | New SQL query text |
description | string | No | New description; omit to keep the current one, or pass an empty string to clear it |
| Parameter | Type | Description |
|---|
success | boolean | Whether the operation succeeded |
Create a parameterized prepared statement in an Athena workgroup for use with EXECUTE or execution parameters
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
statementName | string | Yes | Prepared statement name (letters, digits, _ @ : ; must start with a letter or underscore) |
workGroup | string | Yes | Workgroup the prepared statement belongs to |
queryStatement | string | Yes | SQL statement with ? placeholders for parameters |
description | string | No | Description of the prepared statement |
| Parameter | Type | Description |
|---|
success | boolean | Whether the operation succeeded |
Get the SQL and metadata of a prepared statement in an Athena workgroup
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
statementName | string | Yes | Prepared statement name (letters, digits, _ @ : ; must start with a letter or underscore) |
workGroup | string | Yes | Workgroup the prepared statement belongs to |
| Parameter | Type | Description |
|---|
statementName | string | Prepared statement name |
queryStatement | string | SQL text of the prepared statement |
workGroupName | string | Workgroup the statement belongs to |
description | string | Prepared statement description |
lastModifiedTime | number | Last modified time (Unix epoch ms) |
Get the details of up to 256 prepared statements in an Athena workgroup by name in a single call
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
preparedStatementNames | string | Yes | Comma-separated prepared statement names (up to 256) |
workGroup | string | Yes | Workgroup the prepared statement belongs to |
| Parameter | Type | Description |
|---|
preparedStatements | array | Details for each prepared statement that was found |
↳ statementName | string | Prepared statement name |
↳ queryStatement | string | SQL text of the prepared statement |
↳ workGroupName | string | Workgroup the statement belongs to |
↳ description | string | Prepared statement description |
↳ lastModifiedTime | number | Last modified time (Unix epoch ms) |
unprocessedPreparedStatementNames | array | Statement names that could not be retrieved, with error details |
↳ statementName | string | Prepared statement name |
↳ errorCode | string | Error code |
↳ errorMessage | string | Error message |
Replace the SQL and description of an existing prepared statement in an Athena workgroup
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
statementName | string | Yes | Prepared statement name (letters, digits, _ @ : ; must start with a letter or underscore) |
workGroup | string | Yes | Workgroup the prepared statement belongs to |
queryStatement | string | Yes | New SQL statement with ? placeholders for parameters |
description | string | No | New description of the prepared statement |
| Parameter | Type | Description |
|---|
success | boolean | Whether the operation succeeded |
List the prepared statements saved in an Athena workgroup
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
workGroup | string | Yes | Workgroup to list prepared statements for |
maxResults | number | No | Maximum number of results (1-50) |
nextToken | string | No | Pagination token from a previous request |
| Parameter | Type | Description |
|---|
preparedStatements | array | Prepared statement summaries |
↳ statementName | string | Prepared statement name |
↳ lastModifiedTime | number | Last modified time (Unix epoch ms) |
nextToken | string | Pagination token for next page |
Delete a prepared statement from an Athena workgroup
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
statementName | string | Yes | Prepared statement name (letters, digits, _ @ : ; must start with a letter or underscore) |
workGroup | string | Yes | Workgroup the prepared statement belongs to |
| Parameter | Type | Description |
|---|
success | boolean | Whether the operation succeeded |
List the data catalogs (data sources) registered in the AWS account
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
workGroup | string | No | Workgroup name (required for IAM Identity Center requests) |
maxResults | number | No | Maximum number of results (2-50) |
nextToken | string | No | Pagination token from a previous request |
| Parameter | Type | Description |
|---|
dataCatalogs | array | Data catalog summaries |
↳ catalogName | string | Catalog name |
↳ type | string | Catalog type (LAMBDA, GLUE, HIVE, FEDERATED) |
↳ status | string | Creation or deletion status (e.g., CREATE_COMPLETE) |
↳ connectionType | string | Connector type for FEDERATED catalogs (e.g., MYSQL, REDSHIFT) |
↳ error | string | Error text from catalog creation or deletion |
nextToken | string | Pagination token for next page |
Get the type, status, and connection parameters of an Athena data catalog
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
name | string | Yes | Data catalog name (e.g., AwsDataCatalog) |
workGroup | string | No | Workgroup name (required for IAM Identity Center requests) |
| Parameter | Type | Description |
|---|
name | string | Catalog name |
type | string | Catalog type (LAMBDA, GLUE, HIVE, FEDERATED) |
description | string | Catalog description |
status | string | Creation or deletion status (e.g., CREATE_COMPLETE) |
connectionType | string | Connector type for FEDERATED catalogs (e.g., MYSQL, REDSHIFT) |
error | string | Error text from catalog creation or deletion |
parameters | json | Catalog connection parameters (e.g., catalog-id, function ARN) |
Get a single database (name, description, and parameters) from an Athena data catalog
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
catalogName | string | Yes | Data catalog name (e.g., AwsDataCatalog) |
databaseName | string | Yes | Database name |
workGroup | string | No | Workgroup name (required for IAM Identity Center enabled catalogs) |
| Parameter | Type | Description |
|---|
name | string | Database name |
description | string | Database description |
parameters | json | Key/value properties set on the database |
Get the columns, partition keys, and properties of a single table in an Athena data catalog database
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
catalogName | string | Yes | Data catalog name (e.g., AwsDataCatalog) |
databaseName | string | Yes | Database name |
tableName | string | Yes | Table name |
workGroup | string | No | Workgroup name (required for IAM Identity Center enabled catalogs) |
| Parameter | Type | Description |
|---|
name | string | Table name |
tableType | string | Table type (e.g., EXTERNAL_TABLE, VIRTUAL_VIEW) |
createTime | number | Table creation time (Unix epoch ms) |
lastAccessTime | number | Last access time (Unix epoch ms) |
columns | array | Table columns |
↳ name | string | Column name |
↳ type | string | Column data type |
↳ comment | string | Column comment |
partitionKeys | array | Partition key columns |
↳ name | string | Column name |
↳ type | string | Column data type |
↳ comment | string | Column comment |
parameters | json | Key/value table properties (e.g., classification, location) |
List the Athena workgroups available in the AWS account
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
maxResults | number | No | Maximum number of results (1-50) |
nextToken | string | No | Pagination token from a previous request |
| Parameter | Type | Description |
|---|
workGroups | array | Workgroup summaries |
↳ name | string | Workgroup name |
↳ state | string | Workgroup state (ENABLED, DISABLED) |
↳ description | string | Workgroup description |
↳ creationTime | number | Creation time (Unix epoch ms) |
↳ engineVersion | json | Engine version setting (selected and effective versions) |
↳ selectedEngineVersion | string | Requested engine version |
↳ effectiveEngineVersion | string | Engine version Athena actually uses |
↳ identityCenterApplicationArn | string | IAM Identity Center application ARN |
nextToken | string | Pagination token for next page |
Get the configuration of an Athena workgroup, including its result location, encryption, and limits
| Parameter | Type | Required | Description |
|---|
awsRegion | string | Yes | AWS region (e.g., us-east-1) |
awsAccessKeyId | string | Yes | AWS access key ID |
awsSecretAccessKey | string | Yes | AWS secret access key |
workGroup | string | Yes | Workgroup name |
| Parameter | Type | Description |
|---|
name | string | Workgroup name |
state | string | Workgroup state (ENABLED, DISABLED) |
description | string | Workgroup description |
creationTime | number | Creation time (Unix epoch ms) |
identityCenterApplicationArn | string | IAM Identity Center application ARN |
engineVersion | json | Engine version setting (selected and effective versions) |
↳ selectedEngineVersion | string | Requested engine version |
↳ effectiveEngineVersion | string | Engine version Athena actually uses |
outputLocation | string | S3 location where query results are written |
encryptionOption | string | Result encryption option (SSE_S3, SSE_KMS, CSE_KMS) |
kmsKey | string | KMS key ARN or ID used for result encryption |
expectedBucketOwner | string | Expected AWS account ID of the results bucket owner |
managedQueryResultsEnabled | boolean | Whether results are stored in Athena-owned storage |
enforceWorkGroupConfiguration | boolean | Whether workgroup settings override client-side settings |
publishCloudWatchMetricsEnabled | boolean | Whether CloudWatch metrics are published for the workgroup |
bytesScannedCutoffPerQuery | number | Per-query data scan limit in bytes |
requesterPaysEnabled | boolean | Whether Requester Pays S3 buckets may be queried |
enableMinimumEncryptionConfiguration | boolean | Whether a minimum encryption level is enforced |
executionRole | string | Execution role ARN for Spark or IAM Identity Center workgroups |