interface CfnRegistryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnRegistryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnRegistryMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnRegistryMixinProps |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnRegistryMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const cfnRegistryMixinProps: glue_mixins.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