interface RegistryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnSchemaPropsMixin.RegistryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnSchemaPropsMixin_RegistryProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnSchemaPropsMixin.RegistryProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnSchemaPropsMixin.RegistryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnSchemaPropsMixin » RegistryProperty |
Specifies a registry in the AWS Glue Schema Registry.
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 registryProperty: glue_mixins.CfnSchemaPropsMixin.RegistryProperty = {
arn: 'arn',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The Amazon Resource Name (ARN) of the registry. |
| name? | string | The name of the registry. |
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the registry.
name?
Type:
string
(optional)
The name of the registry.

.NET
Go
Java
Python
TypeScript