CfnRegistryMixinProps

class aws_cdk.mixins_preview.aws_glue.mixins.CfnRegistryMixinProps(*, description=None, name=None, tags=None)

Bases: object

Properties for CfnRegistryPropsMixin.

Parameters:
  • description (Optional[str]) – A description of the registry.

  • name (Optional[str]) – The name of the registry.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – AWS tags that contain a key value pair and may be searched by console, command line, or API.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-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_glue import mixins as glue_mixins

cfn_registry_mixin_props = glue_mixins.CfnRegistryMixinProps(
    description="description",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

A description of the registry.

See:

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

name

The name of the registry.

See:

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

tags

AWS tags that contain a key value pair and may be searched by console, command line, or API.

See:

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