CfnSchemaVersionMetadataProps

class aws_cdk.aws_glue.CfnSchemaVersionMetadataProps(*, key, schema_version_id, value)

Bases: object

Properties for defining a CfnSchemaVersionMetadata.

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

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

  • value (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 import aws_glue as glue

cfn_schema_version_metadata_props = glue.CfnSchemaVersionMetadataProps(
    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