-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
1 parent
19140a9
commit 93fa9dd
Showing
9 changed files
with
156 additions
and
121 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,5 @@ | ||
{ | ||
"type": "api-change", | ||
"category": "``acm-pca``", | ||
"description": "Private Certificate Authority service now supports Partitioned CRL as a revocation configuration option." | ||
} |
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,5 @@ | ||
{ | ||
"type": "api-change", | ||
"category": "``appsync``", | ||
"description": "Add support for operation level caching" | ||
} |
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,5 @@ | ||
{ | ||
"type": "api-change", | ||
"category": "``ec2``", | ||
"description": "Adding support for the new fullSnapshotSizeInBytes field in the response of the EC2 EBS DescribeSnapshots API. This field represents the size of all the blocks that were written to the source volume at the time the snapshot was created." | ||
} |
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,5 @@ | ||
{ | ||
"type": "api-change", | ||
"category": "``pi``", | ||
"description": "Documentation only update for RDS Performance Insights dimensions for execution plans and locking analysis." | ||
} |
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 |
---|---|---|
@@ -1,76 +1,64 @@ | ||
{ | ||
"version": 2, | ||
"waiters": { | ||
"CertificateAuthorityCSRCreated": { | ||
"description": "Wait until a Certificate Authority CSR is created", | ||
"operation": "GetCertificateAuthorityCsr", | ||
"delay": 3, | ||
"maxAttempts": 60, | ||
"acceptors": [ | ||
{ | ||
"state": "success", | ||
"matcher": "status", | ||
"expected": 200 | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "error", | ||
"expected": "RequestInProgressException" | ||
}, | ||
{ | ||
"state": "failure", | ||
"matcher": "error", | ||
"expected": "AccessDeniedException" | ||
} | ||
] | ||
}, | ||
"CertificateIssued": { | ||
"description": "Wait until a certificate is issued", | ||
"operation": "GetCertificate", | ||
"delay": 1, | ||
"maxAttempts": 60, | ||
"acceptors": [ | ||
{ | ||
"state": "success", | ||
"matcher": "status", | ||
"expected": 200 | ||
}, | ||
{ | ||
"state": "retry", | ||
"matcher": "error", | ||
"expected": "RequestInProgressException" | ||
}, | ||
{ | ||
"state": "failure", | ||
"matcher": "error", | ||
"expected": "AccessDeniedException" | ||
} | ||
] | ||
}, | ||
"AuditReportCreated": { | ||
"description": "Wait until a Audit Report is created", | ||
"operation": "DescribeCertificateAuthorityAuditReport", | ||
"delay": 3, | ||
"maxAttempts": 60, | ||
"acceptors": [ | ||
{ | ||
"state": "success", | ||
"matcher": "path", | ||
"argument": "AuditReportStatus", | ||
"expected": "SUCCESS" | ||
}, | ||
{ | ||
"state": "failure", | ||
"matcher": "path", | ||
"argument": "AuditReportStatus", | ||
"expected": "FAILED" | ||
}, | ||
{ | ||
"state": "failure", | ||
"matcher": "error", | ||
"expected": "AccessDeniedException" | ||
} | ||
] | ||
} | ||
"version" : 2, | ||
"waiters" : { | ||
"AuditReportCreated" : { | ||
"description" : "Wait until a Audit Report is created", | ||
"delay" : 3, | ||
"maxAttempts" : 60, | ||
"operation" : "DescribeCertificateAuthorityAuditReport", | ||
"acceptors" : [ { | ||
"matcher" : "path", | ||
"argument" : "AuditReportStatus", | ||
"state" : "success", | ||
"expected" : "SUCCESS" | ||
}, { | ||
"matcher" : "path", | ||
"argument" : "AuditReportStatus", | ||
"state" : "failure", | ||
"expected" : "FAILED" | ||
}, { | ||
"matcher" : "error", | ||
"state" : "failure", | ||
"expected" : "AccessDeniedException" | ||
} ] | ||
}, | ||
"CertificateAuthorityCSRCreated" : { | ||
"description" : "Wait until a Certificate Authority CSR is created", | ||
"delay" : 3, | ||
"maxAttempts" : 60, | ||
"operation" : "GetCertificateAuthorityCsr", | ||
"acceptors" : [ { | ||
"matcher" : "error", | ||
"state" : "success", | ||
"expected" : false | ||
}, { | ||
"matcher" : "error", | ||
"state" : "retry", | ||
"expected" : "RequestInProgressException" | ||
}, { | ||
"matcher" : "error", | ||
"state" : "failure", | ||
"expected" : "AccessDeniedException" | ||
} ] | ||
}, | ||
"CertificateIssued" : { | ||
"description" : "Wait until a certificate is issued", | ||
"delay" : 1, | ||
"maxAttempts" : 60, | ||
"operation" : "GetCertificate", | ||
"acceptors" : [ { | ||
"matcher" : "error", | ||
"state" : "success", | ||
"expected" : false | ||
}, { | ||
"matcher" : "error", | ||
"state" : "retry", | ||
"expected" : "RequestInProgressException" | ||
}, { | ||
"matcher" : "error", | ||
"state" : "failure", | ||
"expected" : "AccessDeniedException" | ||
} ] | ||
} | ||
} | ||
} | ||
} |
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.