ath

Athena

Analytics & IoTAWS
General

General information about the service.

Description

Amazon Athena is a serverless query service to analyze data in S3 using standard SQL.

Service Namespace

AWS::Athena::WorkGroup

ARN Pattern

arn:aws:athena:{region}:{account}:workgroup/{workgroup-name}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

ath-

Length

1-128

Valid Characters

Letters, numbers, hyphens, underscores

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_athena_workgroup" "main" {
2 name = "ath-${var.environment}"
3 configuration {
4 result_configuration {
5 output_location = "s3://${aws_s3_bucket.results.bucket}/"
6 }
7 }
8}
Utilities

Utilities to support app deployment or configuration.