aws-cdk-lib.aws_glue.CfnTable.SchemaIdProperty

interface SchemaIdProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnTable.SchemaIdProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_SchemaIdProperty
Javasoftware.amazon.awscdk.services.glue.CfnTable.SchemaIdProperty
Pythonaws_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

NameTypeDescription
registryName?stringThe name of the schema registry that contains the schema.
schemaArn?stringThe Amazon Resource Name (ARN) of the schema.
schemaName?stringThe 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.