Lists the artifacts associated with a specified subject image
Source:R/ecr_operations.R
ecr_list_image_referrers.RdLists the artifacts associated with a specified subject image.
See https://www.paws-r-sdk.com/docs/ecr_list_image_referrers/ for full documentation.
Usage
ecr_list_image_referrers(
registryId = NULL,
repositoryName,
subjectId,
filter = NULL,
nextToken = NULL,
maxResults = NULL
)Arguments
- registryId
The Amazon Web Services account ID associated with the registry that contains the repository in which to list image referrers. If you do not specify a registry, the default registry is assumed.
- repositoryName
[required] The name of the repository that contains the subject image.
- subjectId
[required] An object containing the image digest of the subject image for which to retrieve associated artifacts.
- filter
The filter key and value with which to filter your
list_image_referrersresults. If no filter is specified, only artifacts withACTIVEstatus are returned.- nextToken
The
nextTokenvalue returned from a previous paginatedlist_image_referrersrequest 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 image referrer results returned by
list_image_referrersin paginated output. When this parameter is used,list_image_referrersonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherlist_image_referrersrequest with the returnednextTokenvalue. This value can be between 1 and 50. If this parameter is not used, thenlist_image_referrersreturns up to 20 results and anextTokenvalue, if applicable.