CfnSchemaVersionMetadataMixinProps

class aws_cdk.mixins_preview.aws_glue.mixins.CfnSchemaVersionMetadataMixinProps(*, key=None, schema_version_id=None, value=None)

Bases: object

Properties for CfnSchemaVersionMetadataPropsMixin.

Parameters:
  • key (Optional[str]) – A metadata key in a key-value pair for metadata.

  • schema_version_id (Optional[str]) – The version number of the schema.

  • value (Optional[str]) – A metadata key’s corresponding value.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-schemaversionmetadata.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_schema_version_metadata_mixin_props = glue_mixins.CfnSchemaVersionMetadataMixinProps(
    key="key",
    schema_version_id="schemaVersionId",
    value="value"
)

Attributes

key

A metadata key in a key-value pair for metadata.

See:

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

schema_version_id

The version number of the schema.

See:

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

value

A metadata key’s corresponding value.

See:

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