List Registries
| schemas_list_registries | R Documentation |
List the registries¶
Description¶
List the registries.
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.
RegistryNamePrefixSpecifying this limits the results to only those registry names that start with the specified prefix.
ScopeCan be set to Local or AWS to limit responses to your custom registries, or the ones provided by AWS.
Value¶
A list with the following syntax:
list(
NextToken = "string",
Registries = list(
list(
RegistryArn = "string",
RegistryName = "string",
Tags = list(
"string"
)
)
)
)
Request syntax¶
svc$list_registries(
Limit = 123,
NextToken = "string",
RegistryNamePrefix = "string",
Scope = "string"
)