interface CfnRegistryProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Glue.CfnRegistryProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnRegistryProps |
Java | software.amazon.awscdk.services.glue.CfnRegistryProps |
Python | aws_cdk.aws_glue.CfnRegistryProps |
TypeScript | aws-cdk-lib » aws_glue » CfnRegistryProps |
Properties for defining a CfnRegistry
.
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-lib';
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.