AWS Fundamentals Logo
AWS Fundamentals
AWS::Glue::Schema

Glue Schema

This resource represents a schema of Glue Schema Registry.

Properties

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

Filter:
PropertyTypeFlags
Compatibility
string
Required
DataFormat
string
RequiredCreate-only
Name
string
RequiredCreate-only
CheckpointVersion
SchemaVersion
Description
string
Registry
Registry
Create-only
SchemaDefinition
string
Create-onlyWrite-only
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
ArnstringAmazon Resource Name for the Schema.
InitialSchemaVersionIdstringRepresents the version ID associated with the initial schema version.

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

Resources:
  MyResource:
    Type: AWS::Glue::Schema
    Properties:
      Name: "my-name"
      DataFormat: "AVRO"
      Compatibility: "NONE"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

glue:CreateSchemaglue:TagResource

read

glue:GetSchemaVersionglue:GetSchemaglue:GetTags

delete

glue:DeleteSchemaglue:GetSchema

update

glue:UpdateSchemaglue:GetSchemaVersionglue:GetSchemaglue:GetTagsglue:TagResourceglue:UntagResource

list

glue:ListSchemas

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
Properties10
Required3
TaggingSupported
Primary IDArn

Supported Operations

CreateReadDeleteUpdateList

Immutable After Creation

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

RegistryNameDataFormatSchemaDefinition

External Links