Describe Image Replication Status
ecr_describe_image_replication_status | R Documentation |
Returns the replication status for a specified image¶
Description¶
Returns the replication status for a specified image.
Usage¶
Arguments¶
repositoryName
[required] The name of the repository that the image is in.
imageId
[required]
registryId
The Amazon Web Services account ID associated with the registry. If you do not specify a registry, the default registry is assumed.
Value¶
A list with the following syntax:
list(
repositoryName = "string",
imageId = list(
imageDigest = "string",
imageTag = "string"
),
replicationStatuses = list(
list(
region = "string",
registryId = "string",
status = "IN_PROGRESS"|"COMPLETE"|"FAILED",
failureCode = "string"
)
)
)