interface SchemaReferenceProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Glue.CfnPartition.SchemaReferenceProperty |
Java | software.amazon.awscdk.services.glue.CfnPartition.SchemaReferenceProperty |
Python | aws_cdk.aws_glue.CfnPartition.SchemaReferenceProperty |
TypeScript | @aws-cdk/aws-glue » CfnPartition » 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 * as glue from '@aws-cdk/aws-glue';
const schemaReferenceProperty: glue.CfnPartition.SchemaReferenceProperty = {
schemaId: {
registryName: 'registryName',
schemaArn: 'schemaArn',
schemaName: 'schemaName',
},
schemaVersionId: 'schemaVersionId',
schemaVersionNumber: 123,
};
Properties
Name | Type | Description |
---|---|---|
schema | IResolvable | Schema | A structure that contains schema identity fields. |
schema | string | The unique ID assigned to a version of the schema. |
schema | number | The version number of the schema. |
schemaId?
Type:
IResolvable
|
Schema
(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.