python-botocore/botocore/data/ecr/2015-09-21/waiters-2.json
2020-02-11 11:48:00 +09:00

45 lines
1.4 KiB
JSON

{
"version": 2,
"waiters": {
"ImageScanComplete": {
"description": "Wait until an image scan is complete and findings can be accessed",
"operation": "DescribeImageScanFindings",
"delay": 5,
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "imageScanStatus.status",
"expected": "COMPLETE"
},
{
"state": "failure",
"matcher": "path",
"argument": "imageScanStatus.status",
"expected": "FAILED"
}
]
},
"LifecyclePolicyPreviewComplete": {
"description": "Wait until a lifecycle policy preview request is complete and results can be accessed",
"operation": "GetLifecyclePolicyPreview",
"delay": 5,
"maxAttempts": 20,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "status",
"expected": "COMPLETE"
},
{
"state": "failure",
"matcher": "path",
"argument": "status",
"expected": "FAILED"
}
]
}
}
}