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

.NET
Go
Java
Python
TypeScript