interface CfnRegistryProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EventSchemas.CfnRegistryProps |
Java | software.amazon.awscdk.services.eventschemas.CfnRegistryProps |
Python | aws_cdk.aws_eventschemas.CfnRegistryProps |
TypeScript | @aws-cdk/aws-eventschemas » 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 eventschemas from '@aws-cdk/aws-eventschemas';
const cfnRegistryProps: eventschemas.CfnRegistryProps = {
description: 'description',
registryName: 'registryName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the registry to be created. |
| registry | string | The name of the schema registry. |
| tags? | Tags[] | Tags to associate with the registry. |
description?
Type:
string
(optional)
A description of the registry to be created.
registryName?
Type:
string
(optional)
The name of the schema registry.
tags?
Type:
Tags[]
(optional)
Tags to associate with the registry.

.NET
Java
Python
TypeScript