CfnSchemaVersionMetadataMixinProps
- class aws_cdk.mixins_preview.aws_glue.mixins.CfnSchemaVersionMetadataMixinProps(*, key=None, schema_version_id=None, value=None)
Bases:
objectProperties 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:
- 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.
- schema_version_id
The version number of the schema.
- value
A metadata key’s corresponding value.