CfnSchemaVersionMetadataMixinProps
- class aws_cdk.cfn_property_mixins.aws_glue.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 (
Union[str,ISchemaVersionRef,None]) – 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.cfn_property_mixins import aws_glue as glue cfn_schema_version_metadata_mixin_props = glue.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.