aws-cdk-lib.aws_glue.CfnTable.SchemaReferenceProperty

interface SchemaReferenceProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnTable.SchemaReferenceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_SchemaReferenceProperty
Javasoftware.amazon.awscdk.services.glue.CfnTable.SchemaReferenceProperty
Pythonaws_cdk.aws_glue.CfnTable.SchemaReferenceProperty
TypeScript aws-cdk-lib » aws_glue » CfnTable » SchemaReferenceProperty

An object that references a schema stored in the AWS Glue Schema Registry.

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 schemaReferenceProperty: glue.CfnTable.SchemaReferenceProperty = {
  schemaId: {
    registryName: 'registryName',
    schemaArn: 'schemaArn',
    schemaName: 'schemaName',
  },
  schemaVersionId: 'schemaVersionId',
  schemaVersionNumber: 123,
};

Properties

NameTypeDescription
schemaId?IResolvable | SchemaIdPropertyA structure that contains schema identity fields.
schemaVersionId?stringThe unique ID assigned to a version of the schema.
schemaVersionNumber?numberThe version number of the schema.

schemaId?

Type: IResolvable | SchemaIdProperty (optional)

A structure that contains schema identity fields.

Either this or the SchemaVersionId has to be provided.


schemaVersionId?

Type: string (optional)

The unique ID assigned to a version of the schema.

Either this or the SchemaId has to be provided.


schemaVersionNumber?

Type: number (optional)

The version number of the schema.