interface CfnRegistryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EventSchemas.Mixins.CfnRegistryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseventschemas/mixins#CfnRegistryMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.eventschemas.mixins.CfnRegistryMixinProps |
Python | aws_cdk.mixins_preview.aws_eventschemas.mixins.CfnRegistryMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_eventschemas » mixins » CfnRegistryMixinProps |
Properties for CfnRegistryPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as eventschemas_mixins } from '@aws-cdk/mixins-preview/aws-eventschemas';
const cfnRegistryMixinProps: eventschemas_mixins.CfnRegistryMixinProps = {
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