Describe Registries
ecrpublic_describe_registries | R Documentation |
Returns details for a public registry¶
Description¶
Returns details for a public registry.
Usage¶
Arguments¶
nextToken
The
nextToken
value that's returned from a previous paginateddescribe_registries
request wheremaxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextToken
value. If there are no more results to return, this value isnull
.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
describe_registries
in paginated output. When this parameter is used,describe_registries
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherdescribe_registries
request with the returnednextToken
value. This value can be between 1 and 1000. If this parameter isn't used, thendescribe_registries
returns up to 100 results and anextToken
value, if applicable.
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"
)