interface CfnSchemaVersionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnSchemaVersionProps |
Java | software.amazon.awscdk.services.glue.CfnSchemaVersionProps |
Python | aws_cdk.aws_glue.CfnSchemaVersionProps |
TypeScript | @aws-cdk/aws-glue » CfnSchemaVersionProps |
Properties for defining a CfnSchemaVersion.
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 cfnSchemaVersionProps: glue.CfnSchemaVersionProps = {
schema: {
registryName: 'registryName',
schemaArn: 'schemaArn',
schemaName: 'schemaName',
},
schemaDefinition: 'schemaDefinition',
};
Properties
| Name | Type | Description |
|---|---|---|
| schema | IResolvable | Schema | The schema that includes the schema version. |
| schema | string | The schema definition for the schema version. |
schema
Type:
IResolvable | Schema
The schema that includes the schema version.
schemaDefinition
Type:
string
The schema definition for the schema version.

.NET
Java
Python
TypeScript