Query Schema Version Metadata
| glue_query_schema_version_metadata | R Documentation | 
Queries for the schema version metadata information¶
Description¶
Queries for the schema version metadata information.
Usage¶
glue_query_schema_version_metadata(SchemaId, SchemaVersionNumber,
  SchemaVersionId, MetadataList, MaxResults, NextToken)
Arguments¶
SchemaId | 
A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).  | 
SchemaVersionNumber | 
The version number of the schema.  | 
SchemaVersionId | 
The unique version ID of the schema version.  | 
MetadataList | 
Search key-value pairs for metadata, if they are not provided all the metadata information will be fetched.  | 
MaxResults | 
Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.  | 
NextToken | 
A continuation token, if this is a continuation call.  | 
Value¶
A list with the following syntax:
list(
  MetadataInfoMap = list(
    list(
      MetadataValue = "string",
      CreatedTime = "string",
      OtherMetadataValueList = list(
        list(
          MetadataValue = "string",
          CreatedTime = "string"
        )
      )
    )
  ),
  SchemaVersionId = "string",
  NextToken = "string"
)
Request syntax¶
svc$query_schema_version_metadata(
  SchemaId = list(
    SchemaArn = "string",
    SchemaName = "string",
    RegistryName = "string"
  ),
  SchemaVersionNumber = list(
    LatestVersion = TRUE|FALSE,
    VersionNumber = 123
  ),
  SchemaVersionId = "string",
  MetadataList = list(
    list(
      MetadataKey = "string",
      MetadataValue = "string"
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)