interface SchemaIdProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Glue.CfnPartition.SchemaIdProperty |
Java | software.amazon.awscdk.services.glue.CfnPartition.SchemaIdProperty |
Python | aws_cdk.aws_glue.CfnPartition.SchemaIdProperty |
TypeScript | @aws-cdk/aws-glue » CfnPartition » 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 * as glue from '@aws-cdk/aws-glue';
const schemaIdProperty: glue.CfnPartition.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.