List Schemas
| schemas_list_schemas | R Documentation |
List the schemas¶
Description¶
List the schemas.
Usage¶
Arguments¶
LimitNextTokenThe token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.
RegistryName[required] The name of the registry.
SchemaNamePrefixSpecifying this limits the results to only those schema names that start with the specified prefix.
Value¶
A list with the following syntax:
list(
NextToken = "string",
Schemas = list(
list(
LastModified = as.POSIXct(
"2015-01-01"
),
SchemaArn = "string",
SchemaName = "string",
Tags = list(
"string"
),
VersionCount = 123
)
)
)
Request syntax¶
svc$list_schemas(
Limit = 123,
NextToken = "string",
RegistryName = "string",
SchemaNamePrefix = "string"
)