aws-cdk-lib.aws_glue.CfnRegistryProps

interface CfnRegistryProps

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnRegistryProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnRegistryProps
Javasoftware.amazon.awscdk.services.glue.CfnRegistryProps
Pythonaws_cdk.aws_glue.CfnRegistryProps
TypeScript aws-cdk-lib » 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 { 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

NameTypeDescription
namestringThe name of the registry.
description?stringA description of the registry.
tags?CfnTag[]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: CfnTag[] (optional)

AWS tags that contain a key value pair and may be searched by console, command line, or API.