CfnRegistryMixinProps
- class aws_cdk.mixins_preview.aws_eventschemas.mixins.CfnRegistryMixinProps(*, description=None, registry_name=None, tags=None)
Bases:
objectProperties for CfnRegistryPropsMixin.
- Parameters:
description (
Optional[str]) – A description of the registry to be created.registry_name (
Optional[str]) – The name of the schema registry.tags (
Optional[Sequence[Union[TagsEntryProperty,Dict[str,Any]]]]) – Tags to associate with the registry.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_eventschemas import mixins as eventschemas_mixins cfn_registry_mixin_props = eventschemas_mixins.CfnRegistryMixinProps( description="description", registry_name="registryName", tags=[eventschemas_mixins.CfnRegistryPropsMixin.TagsEntryProperty( key="key", value="value" )] )
Attributes
- description
A description of the registry to be created.
- registry_name
The name of the schema registry.
- tags
Tags to associate with the registry.