Creates an AWS Glue Schema with a specified name, registry ARN, data format, compatibility setting, and schema definition.

Terraform Template

resource "aws_glue_schema" "example" {
  compatibility = "NONE"
  data_format = "AVRO"
  registry_arn = "aws_glue_registry.test.arn"
  schema_definition = "{"type": "record", "name": "r1", "fields": [ {"name": "f1", "type": "int"}, {"name": "f2", "type": "string"} ]}"
  schema_name = "example"
}