CfnRegistryProps
- class aws_cdk.aws_eventschemas.CfnRegistryProps(*, description=None, registry_name=None, tags=None)
Bases:
object
Properties for defining a
CfnRegistry
.- 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 import aws_eventschemas as eventschemas cfn_registry_props = eventschemas.CfnRegistryProps( description="description", registry_name="registryName", tags=[eventschemas.CfnRegistry.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.