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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-description

registry_name

The name of the schema registry.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-registryname

tags

Tags to associate with the registry.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registry.html#cfn-eventschemas-registry-tags