/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * This resource represents an individual schema version of a schema defined in Glue Schema Registry. */ export interface AwsGlueSchemaversion { Schema: Schema; /** * Complete definition of the schema in plain-text. */ SchemaDefinition: string; /** * Represents the version ID associated with the schema version. */ VersionId?: string; } /** * Identifier for the schema where the schema version will be created. */ export interface Schema { /** * Amazon Resource Name for the Schema. This attribute can be used to uniquely represent the Schema. */ SchemaArn?: string; /** * Name of the schema. This parameter requires RegistryName to be provided. */ SchemaName?: string; /** * Name of the registry to identify where the Schema is located. */ RegistryName?: string; }