Skip to content

Put Schema Version Metadata

glue_put_schema_version_metadata R Documentation

Puts the metadata key value pair for a specified schema version ID

Description

Puts the metadata key value pair for a specified schema version ID. A maximum of 10 key value pairs will be allowed per schema version. They can be added over one or more calls.

Usage

glue_put_schema_version_metadata(SchemaId, SchemaVersionNumber,
  SchemaVersionId, MetadataKeyValue)

Arguments

SchemaId

The unique ID for the schema.

SchemaVersionNumber

The version number of the schema.

SchemaVersionId

The unique version ID of the schema version.

MetadataKeyValue

[required] The metadata key's corresponding value.

Value

A list with the following syntax:

list(
  SchemaArn = "string",
  SchemaName = "string",
  RegistryName = "string",
  LatestVersion = TRUE|FALSE,
  VersionNumber = 123,
  SchemaVersionId = "string",
  MetadataKey = "string",
  MetadataValue = "string"
)

Request syntax

svc$put_schema_version_metadata(
  SchemaId = list(
    SchemaArn = "string",
    SchemaName = "string",
    RegistryName = "string"
  ),
  SchemaVersionNumber = list(
    LatestVersion = TRUE|FALSE,
    VersionNumber = 123
  ),
  SchemaVersionId = "string",
  MetadataKeyValue = list(
    MetadataKey = "string",
    MetadataValue = "string"
  )
)