CfnRegistryMixinProps

class aws_cdk.mixins_preview.aws_eventschemas.mixins.CfnRegistryMixinProps(*, description=None, registry_name=None, tags=None)

Bases: object

Properties 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:

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.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.

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