Describe Registries
ecrpublic_describe_registries | R Documentation |
Returns details for a public registry¶
Description¶
Returns details for a public registry.
Usage¶
ecrpublic_describe_registries(nextToken, maxResults)
Arguments¶
nextToken |
The This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes. |
maxResults |
The maximum number of repository results that's returned by
|
Value¶
A list with the following syntax:
list(
registries = list(
list(
registryId = "string",
registryArn = "string",
registryUri = "string",
verified = TRUE|FALSE,
aliases = list(
list(
name = "string",
status = "ACTIVE"|"PENDING"|"REJECTED",
primaryRegistryAlias = TRUE|FALSE,
defaultRegistryAlias = TRUE|FALSE
)
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_registries(
nextToken = "string",
maxResults = 123
)