ecr-2015-09-21.waiters2.json
1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"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"
}
]
}
}
}