interface CfnRegistryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnRegistryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnRegistryMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnRegistryMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnRegistryMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnRegistryMixinProps |
Properties for CfnRegistryPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-registry.html
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 cfnRegistryMixinProps: glue.CfnRegistryMixinProps = {
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the registry. |
| name? | string | The name of the registry. |
| tags? | Cfn[] | AWS tags that contain a key value pair and may be searched by console, command line, or API. |
description?
Type:
string
(optional)
A description of the registry.
name?
Type:
string
(optional)
The name 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
Go
Java
Python
TypeScript