Describe Pull Through Cache Rules
| ecr_describe_pull_through_cache_rules | R Documentation |
Returns the pull through cache rules for a registry¶
Description¶
Returns the pull through cache rules for a registry.
Usage¶
Arguments¶
registryIdThe Amazon Web Services account ID associated with the registry to return the pull through cache rules for. If you do not specify a registry, the default registry is assumed.
ecrRepositoryPrefixesThe Amazon ECR repository prefixes associated with the pull through cache rules to return. If no repository prefix value is specified, all pull through cache rules are returned.
nextTokenThe
nextTokenvalue returned from a previous paginatedDescribePullThroughCacheRulesRequestrequest 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 is null when there are no more results to return.maxResultsThe maximum number of pull through cache rules returned by
DescribePullThroughCacheRulesRequestin paginated output. When this parameter is used,DescribePullThroughCacheRulesRequestonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherDescribePullThroughCacheRulesRequestrequest with the returnednextTokenvalue. This value can be between 1 and 1000. If this parameter is not used, thenDescribePullThroughCacheRulesRequestreturns up to 100 results and anextTokenvalue, if applicable.
Value¶
A list with the following syntax:
list(
pullThroughCacheRules = list(
list(
ecrRepositoryPrefix = "string",
upstreamRegistryUrl = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
registryId = "string",
credentialArn = "string",
upstreamRegistry = "ecr-public"|"quay"|"k8s"|"docker-hub"|"github-container-registry"|"azure-container-registry"|"gitlab-container-registry",
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)