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¶
SchemaIdA wrapper structure that may contain the schema name and Amazon Resource Name (ARN).
SchemaVersionNumberThe version number of the schema.
SchemaVersionIdThe unique version ID of the schema version.
MetadataListSearch key-value pairs for metadata, if they are not provided all the metadata information will be fetched.
MaxResultsMaximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.
NextTokenA 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"
)