interface SchemaIdProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Glue.CfnTable.SchemaIdProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_SchemaIdProperty | 
|  Java | software.amazon.awscdk.services.glue.CfnTable.SchemaIdProperty | 
|  Python | aws_cdk.aws_glue.CfnTable.SchemaIdProperty | 
|  TypeScript | aws-cdk-lib»aws_glue»CfnTable»SchemaIdProperty | 
A structure that contains schema identity fields.
Either this or the SchemaVersionId has to be
provided.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const schemaIdProperty: glue.CfnTable.SchemaIdProperty = {
  registryName: 'registryName',
  schemaArn: 'schemaArn',
  schemaName: 'schemaName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| registry | string | The name of the schema registry that contains the schema. | 
| schema | string | The Amazon Resource Name (ARN) of the schema. | 
| schema | string | The name of the schema. | 
registryName?
Type:
string
(optional)
The name of the schema registry that contains the schema.
schemaArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the schema.
One of SchemaArn or SchemaName has to be
provided.
schemaName?
Type:
string
(optional)
The name of the schema.
One of SchemaArn or SchemaName has to be provided.
