glue

Glue

Analytics & IoTAWS
General

General information about the service.

Description

AWS Glue is a serverless data integration service for ETL (extract, transform, load) jobs.

Service Namespace

AWS::Glue::Job

ARN Pattern

arn:aws:glue:{region}:{account}:job/{job-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

glue-

Length

1-255

Valid Characters

Letters, numbers, hyphens, underscores

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_glue_job" "main" {
2 name = "glue-${var.environment}"
3 role_arn = aws_iam_role.glue.arn
4 command {
5 script_location = "s3://${aws_s3_bucket.scripts.bucket}/script.py"
6 }
7}
Utilities

Utilities to support app deployment or configuration.