aws-cdk-lib.aws_glue.CfnSchemaVersion.SchemaProperty

interface SchemaProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnSchemaVersion.SchemaProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnSchemaVersion_SchemaProperty
Javasoftware.amazon.awscdk.services.glue.CfnSchemaVersion.SchemaProperty
Pythonaws_cdk.aws_glue.CfnSchemaVersion.SchemaProperty
TypeScript aws-cdk-lib » 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 { aws_glue as glue } from 'aws-cdk-lib';
const schemaProperty: glue.CfnSchemaVersion.SchemaProperty = {
  registryName: 'registryName',
  schemaArn: 'schemaArn',
  schemaName: 'schemaName',
};

Properties

NameTypeDescription
registryName?stringThe name of the registry where the schema is stored.
schemaArn?stringThe Amazon Resource Name (ARN) of the schema.
schemaName?stringThe 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.