interface RegistryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnSchemaPropsMixin.RegistryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnSchemaPropsMixin_RegistryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnSchemaPropsMixin.RegistryProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnSchemaPropsMixin.RegistryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » 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 { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const registryProperty: glue.CfnSchemaPropsMixin.RegistryProperty = {
arn: 'arn',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | IRegistry | The Amazon Resource Name (ARN) of the registry. |
| name? | string | The name of the registry. |
arn?
Type:
string | IRegistry
(optional)
The Amazon Resource Name (ARN) of the registry.
name?
Type:
string
(optional)
The name of the registry.

.NET
Go
Java
Python
TypeScript