SchemaVersionMetadataReference

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

Bases: object

A reference to a SchemaVersionMetadata resource.

Parameters:
  • key (str) – The Key of the SchemaVersionMetadata resource.

  • schema_version_id (str) – The SchemaVersionId of the SchemaVersionMetadata resource.

  • value (str) – The Value of the SchemaVersionMetadata resource.

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

schema_version_metadata_reference = glue.SchemaVersionMetadataReference(
    key="key",
    schema_version_id="schemaVersionId",
    value="value"
)

Attributes

key

The Key of the SchemaVersionMetadata resource.

schema_version_id

The SchemaVersionId of the SchemaVersionMetadata resource.

value

The Value of the SchemaVersionMetadata resource.