interface CfnRegistryProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Glue.CfnRegistryProps | 
  Java | software.amazon.awscdk.services.glue.CfnRegistryProps | 
  Python | aws_cdk.aws_glue.CfnRegistryProps | 
  TypeScript  | @aws-cdk/aws-glue » CfnRegistryProps | 
Properties for defining a CfnRegistry.
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 cfnRegistryProps: glue.CfnRegistryProps = {
  name: 'name',
  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | The name of the registry. | 
| description? | string | A description of the registry. | 
| tags? | Cfn[] | AWS tags that contain a key value pair and may be searched by console, command line, or API. | 
name
Type:
string
The name of the registry.
description?
Type:
string
(optional)
A description of the registry.
tags?
Type:
Cfn[]
(optional)
AWS tags that contain a key value pair and may be searched by console, command line, or API.

 .NET
 Java
 Python
 TypeScript