interface SchemaProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Glue.CfnSchemaVersion.SchemaProperty |
Java | software.amazon.awscdk.services.glue.CfnSchemaVersion.SchemaProperty |
Python | aws_cdk.aws_glue.CfnSchemaVersion.SchemaProperty |
TypeScript | @aws-cdk/aws-glue » CfnSchemaVersion » SchemaProperty |
A wrapper structure to contain schema identity fields.
Either SchemaArn
, or SchemaName
and RegistryName
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 * as glue from '@aws-cdk/aws-glue';
const schemaProperty: glue.CfnSchemaVersion.SchemaProperty = {
registryName: 'registryName',
schemaArn: 'schemaArn',
schemaName: 'schemaName',
};
Properties
Name | Type | Description |
---|---|---|
registry | string | The name of the registry where the schema is stored. |
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 registry where the schema is stored.
Either SchemaArn
, or SchemaName
and RegistryName
has to be provided.
schemaArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the schema.
Either SchemaArn
, or SchemaName
and RegistryName
has to be provided.
schemaName?
Type:
string
(optional)
The name of the schema.
Either SchemaArn
, or SchemaName
and RegistryName
has to be provided.