Returns details about the repository creation templates in a registry
Source:R/ecr_operations.R
ecr_describe_repository_creation_templates.RdReturns details about the repository creation templates in a registry. The prefixes request parameter can be used to return the details for a specific repository creation template.
See https://www.paws-r-sdk.com/docs/ecr_describe_repository_creation_templates/ for full documentation.
Usage
ecr_describe_repository_creation_templates(
prefixes = NULL,
nextToken = NULL,
maxResults = NULL
)Arguments
- prefixes
The repository namespace prefixes associated with the repository creation templates to describe. If this value is not specified, all repository creation templates are returned.
- nextToken
The
nextTokenvalue returned from a previous paginateddescribe_repository_creation_templatesrequest wheremaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextTokenvalue. This value isnullwhen there are no more results to return.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 returned by
DescribeRepositoryCreationTemplatesRequestin paginated output. When this parameter is used,DescribeRepositoryCreationTemplatesRequestonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherDescribeRepositoryCreationTemplatesRequestrequest with the returnednextTokenvalue. This value can be between 1 and 1000. If this parameter is not used, thenDescribeRepositoryCreationTemplatesRequestreturns up to 100 results and anextTokenvalue, if applicable.