-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v1.54.20 (2024-07-18) (#5311)
Release v1.54.20 (2024-07-18) === ### Service Client Updates * `service/acm-pca`: Updates service waiters * `service/connect`: Updates service API, documentation, and paginators * `service/ec2`: Updates service API and documentation * Amazon VPC IP Address Manager (IPAM) now supports Bring-Your-Own-IP (BYOIP) for IP addresses registered with any Internet Registry. This feature uses DNS TXT records to validate ownership of a public IP address range. * `service/firehose`: Updates service API and documentation * This release 1) Add configurable buffering hints for Snowflake as destination. 2) Add ReadFromTimestamp for MSK As Source. Firehose will start reading data from MSK Cluster using offset associated with this timestamp. 3) Gated public beta release to add Apache Iceberg tables as destination. * `service/ivschat`: Updates service API, documentation, and waiters * `service/medialive`: Updates service API and documentation * AWS Elemental MediaLive now supports the SRT protocol via the new SRT Caller input type. * `service/rds`: Updates service API, documentation, waiters, paginators, and examples * Updates Amazon RDS documentation to specify an eventual consistency model for DescribePendingMaintenanceActions. * `service/sagemaker`: Updates service API * SageMaker Training supports R5, T3 and R5D instances family. And SageMaker Processing supports G5 and R5D instances family. * `service/secretsmanager`: Updates service documentation * Doc only update for Secrets Manager * `service/taxsettings`: Updates service API * `service/timestream-query`: Updates service API and documentation * `service/workspaces-thin-client`: Updates service API and documentation
- Loading branch information
1 parent
943e665
commit 019bed0
Showing
41 changed files
with
5,270 additions
and
566 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,64 +1,76 @@ | ||
{ | ||
"version" : 2, | ||
"waiters" : { | ||
"AuditReportCreated" : { | ||
"description" : "Wait until a Audit Report is created", | ||
"delay" : 3, | ||
"maxAttempts" : 40, | ||
"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" : 40, | ||
"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" : 120, | ||
"operation" : "GetCertificate", | ||
"acceptors" : [ { | ||
"matcher" : "error", | ||
"state" : "success", | ||
"expected" : false | ||
}, { | ||
"matcher" : "error", | ||
"state" : "retry", | ||
"expected" : "RequestInProgressException" | ||
}, { | ||
"matcher" : "error", | ||
"state" : "failure", | ||
"expected" : "AccessDeniedException" | ||
} ] | ||
"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" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.