interface SchemaIdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTablePropsMixin.SchemaIdProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTablePropsMixin_SchemaIdProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTablePropsMixin.SchemaIdProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTablePropsMixin.SchemaIdProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const schemaIdProperty: glue_mixins.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