interface CfnRegistryProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EventSchemas.CfnRegistryProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseventschemas#CfnRegistryProps |
Java | software.amazon.awscdk.services.eventschemas.CfnRegistryProps |
Python | aws_cdk.aws_eventschemas.CfnRegistryProps |
TypeScript | aws-cdk-lib » 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 { aws_eventschemas as eventschemas } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript