interface CfnRegistryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EventSchemas.CfnRegistryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseventschemas#CfnRegistryMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.eventschemas.CfnRegistryMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_eventschemas.CfnRegistryMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eventschemas » 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 { aws_eventschemas as eventschemas } from '@aws-cdk/cfn-property-mixins';
const cfnRegistryMixinProps: eventschemas.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 | IRegistry | 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 | IRegistry
(optional)
The name of the schema registry.
tags?
Type:
Tags[]
(optional)
Tags to associate with the registry.

.NET
Go
Java
Python
TypeScript