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.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.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.
- schema_version_id
The version number of the schema.
- value
A metadata key’s corresponding value.