AWS Fundamentals Logo
AWS Fundamentals
AWS::Glue::Integration

Glue Integration

Resource Type definition for AWS::Glue::Integration

Properties

9 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
IntegrationName
string
RequiredCreate-only
SourceArn
string
RequiredCreate-only
TargetArn
string
RequiredCreate-only
AdditionalEncryptionContext
IntegrationAdditionalEncryptionContextMap
Create-only
DataFilter
string
Description
string
IntegrationConfig
IntegrationConfig
Create-only
KmsKeyId
string
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
CreateTimestringThe time (UTC) when the integration was created.
IntegrationArnstringThe Amazon Resource Name (ARN) of the integration.
StatusstringThe status of the integration.

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::Integration

Resources:
  MyResource:
    Type: AWS::Glue::Integration
    Properties:
      IntegrationName: "my-integrationname"
      SourceArn: "arn:aws:service:region:account:resource"
      TargetArn: "arn:aws:service:region:account:resource"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

read

glue:DescribeIntegrationsglue:GetTags

create

glue:CreateIntegrationglue:DescribeIntegrationsglue:TagResourceglue:GetTagskms:CreateGrantkms:DescribeKeyglue:CreateInboundIntegration

update

glue:DescribeIntegrationsglue:ModifyIntegrationglue:TagResourceglue:UntagResource

list

glue:DescribeIntegrations

delete

glue:UntagResourceglue:DeleteIntegrationglue:DescribeIntegrations

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
Properties12
Required3
TaggingSupported
Primary IDIntegrationArn

Supported Operations

ReadCreateUpdateListDelete

Immutable After Creation

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

IntegrationNameSourceArnTargetArnKmsKeyIdAdditionalEncryptionContextIntegrationConfigIntegrationConfig/RefreshInterval

External Links