-
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
Jul 3, 2018
1 parent
b8a4ee7
commit f5a9d42
Showing
19 changed files
with
4,039 additions
and
1,916 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,17 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "ACM", | ||
"description": "Adds a \"CertificateValidated\" waiter to AWS Certificate Manager clients, which polls on a new certificate's validation state." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "EC2", | ||
"description": "Added support for customers to tag EC2 Dedicated Hosts" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "Redshift", | ||
"description": "Feature 1 - On-demand cluster release version - When Amazon Redshift releases a new cluster version, you can choose to upgrade to that version immediately instead of waiting until your next maintenance window. You can also choose to roll back to a previous version. The two new APIs added for managing cluster release version are - ModifyClusterDbRevision, DescribeClusterDbRevisions. Feature 2 - Upgradeable reserved instance - You can now exchange one Reserved Instance for a new Reserved Instance with no changes to the terms of your existing Reserved Instance (term, payment type, or number of nodes). The two new APIs added for managing these upgrades are - AcceptReservedNodeExchange, GetReservedNodeExchangeOfferings. " | ||
} | ||
] |
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,35 @@ | ||
{ | ||
"version": 2, | ||
"waiters": { | ||
"CertificateValidated": { | ||
"delay": 60, | ||
"maxAttempts": 40, | ||
"operation": "DescribeCertificate", | ||
"acceptors": [ | ||
{ | ||
"matcher": "pathAll", | ||
"expected": "SUCCESS", | ||
"argument": "Certificate.DomainValidationOptions[].ValidationStatus", | ||
"state": "success" | ||
}, | ||
{ | ||
"matcher": "pathAny", | ||
"expected": "PENDING_VALIDATION", | ||
"argument": "Certificate.DomainValidationOptions[].ValidationStatus", | ||
"state": "retry" | ||
}, | ||
{ | ||
"matcher": "path", | ||
"expected": "FAILED", | ||
"argument": "Certificate.Status", | ||
"state": "failure" | ||
}, | ||
{ | ||
"matcher": "error", | ||
"expected": "ResourceNotFoundException", | ||
"state": "failure" | ||
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.