-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
awstools
committed
Jan 2, 2020
1 parent
a7af3ec
commit 9834f20
Showing
19 changed files
with
2,012 additions
and
1,861 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "ECR", | ||
"description": "Adds waiters for ImageScanComplete and LifecyclePolicyPreviewComplete" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "Lightsail", | ||
"description": "This release adds support for Certificate Authority (CA) certificate identifier to managed databases in Amazon Lightsail." | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.