Describe Image Tags
ecrpublic_describe_image_tags | R Documentation |
Returns the image tag details for a repository in a public registry¶
Description¶
Returns the image tag details for a repository in a public registry.
Usage¶
ecrpublic_describe_image_tags(registryId, repositoryName, nextToken,
maxResults)
Arguments¶
registryId |
The Amazon Web Services account ID that's associated with the public registry that contains the repository where images are described. If you do not specify a registry, the default public registry is assumed. |
repositoryName |
[required] The name of the repository that contains the image tag details to describe. |
nextToken |
The |
maxResults |
The maximum number of repository results that's returned by
|
Value¶
A list with the following syntax:
list(
imageTagDetails = list(
list(
imageTag = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
imageDetail = list(
imageDigest = "string",
imageSizeInBytes = 123,
imagePushedAt = as.POSIXct(
"2015-01-01"
),
imageManifestMediaType = "string",
artifactMediaType = "string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_image_tags(
registryId = "string",
repositoryName = "string",
nextToken = "string",
maxResults = 123
)