Describe Registries
| ecrpublic_describe_registries | R Documentation |
Returns details for a public registry¶
Description¶
Returns details for a public registry.
Usage¶
Arguments¶
nextTokenThe
nextTokenvalue that's returned from a previous paginateddescribe_registriesrequest wheremaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextTokenvalue. 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.
maxResultsThe maximum number of repository results that's returned by
describe_registriesin paginated output. When this parameter is used,describe_registriesonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherdescribe_registriesrequest with the returnednextTokenvalue. This value can be between 1 and 1000. If this parameter isn't used, thendescribe_registriesreturns up to 100 results and anextTokenvalue, 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"
)