Elastic Container Registry (ECR)
Retrieve ECR repository images
Lists Amazon ECR images from repositories tagged with the current EDH cluster ID
get/api/containers/ecr/repository
Query parameters
repositorystring
Comma-separated list of ECR repository names to inspect
Headers
X-EDH-USERstring required
EDH username for authentication
X-EDH-TOKENstring required
EDH authentication token
Response
ECR images retrieved successfully
Example response
{
"success": true,
"message": {
"my-app": [
{
"imageTag": "latest",
"imageDigest": "sha256:abc123def456",
"imageUri": "123456789.dkr.ecr.us-east-1.amazonaws.com/my-app:latest",
"pushedAt": "2024-01-15 10:30:00",
"imageSizeInMB": 125.5
}
]
}
}