AWS Fundamentals Logo
AWS Fundamentals
AWS::Glue::Job

Glue Job

Resource Type definition for AWS::Glue::Job

Properties

23 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
Command
JobCommand
Required
Role
string
Required
AllocatedCapacity
number
Connections
ConnectionsList
DefaultArguments
object
Description
string
ExecutionClass
string
ExecutionProperty
ExecutionProperty
GlueVersion
string
JobMode
string
JobRunQueuingEnabled
boolean
LogUri
string
MaintenanceWindow
string
MaxCapacity
number
MaxRetries
number
Name
string
Create-only
NonOverridableArguments
object
NotificationProperty
NotificationProperty
NumberOfWorkers
integer
SecurityConfiguration
string
Tags
object
Timeout
integer
WorkerType
string

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Glue::Job

Resources:
  MyResource:
    Type: AWS::Glue::Job
    Properties:
      Role: "value"
      Command: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"
      Name: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

iam:GetRoleiam:PassRoleglue:CreateJobglue:GetJobglue:TagResource

read

glue:GetJobglue:GetTags

delete

glue:DeleteJobglue:GetJobglue:UntagResource

update

iam:GetRoleiam:PassRoleglue:UpdateJobglue:UntagResourceglue:TagResource

list

glue:ListJobs

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceGlue
Properties23
Required2
TaggingSupported
Primary IDName

Supported Operations

CreateReadDeleteUpdateList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

Name

External Links