interface SchemaIdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnTablePropsMixin.SchemaIdProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnTablePropsMixin_SchemaIdProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnTablePropsMixin.SchemaIdProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnTablePropsMixin.SchemaIdProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnTablePropsMixin » 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/cfn-property-mixins';
const schemaIdProperty: glue.CfnTablePropsMixin.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.

.NET
Go
Java
Python
TypeScript