Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 019bed0

Browse files
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
1 parent 943e665 commit 019bed0

File tree

41 files changed

+5270
-566
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+5270
-566
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
Release v1.54.20 (2024-07-18)
2+
===
3+
4+
### Service Client Updates
5+
* `service/acm-pca`: Updates service waiters
6+
* `service/connect`: Updates service API, documentation, and paginators
7+
* `service/ec2`: Updates service API and documentation
8+
* 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.
9+
* `service/firehose`: Updates service API and documentation
10+
* 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.
11+
* `service/ivschat`: Updates service API, documentation, and waiters
12+
* `service/medialive`: Updates service API and documentation
13+
* AWS Elemental MediaLive now supports the SRT protocol via the new SRT Caller input type.
14+
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
15+
* Updates Amazon RDS documentation to specify an eventual consistency model for DescribePendingMaintenanceActions.
16+
* `service/sagemaker`: Updates service API
17+
* SageMaker Training supports R5, T3 and R5D instances family. And SageMaker Processing supports G5 and R5D instances family.
18+
* `service/secretsmanager`: Updates service documentation
19+
* Doc only update for Secrets Manager
20+
* `service/taxsettings`: Updates service API
21+
* `service/timestream-query`: Updates service API and documentation
22+
* `service/workspaces-thin-client`: Updates service API and documentation
23+
124
Release v1.54.19 (2024-07-12)
225
===
326

aws/endpoints/defaults.go

Lines changed: 52 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.54.19"
8+
const SDKVersion = "1.54.20"
Lines changed: 74 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,76 @@
11
{
2-
"version" : 2,
3-
"waiters" : {
4-
"AuditReportCreated" : {
5-
"description" : "Wait until a Audit Report is created",
6-
"delay" : 3,
7-
"maxAttempts" : 40,
8-
"operation" : "DescribeCertificateAuthorityAuditReport",
9-
"acceptors" : [ {
10-
"matcher" : "path",
11-
"argument" : "AuditReportStatus",
12-
"state" : "success",
13-
"expected" : "SUCCESS"
14-
}, {
15-
"matcher" : "path",
16-
"argument" : "AuditReportStatus",
17-
"state" : "failure",
18-
"expected" : "FAILED"
19-
}, {
20-
"matcher" : "error",
21-
"state" : "failure",
22-
"expected" : "AccessDeniedException"
23-
} ]
24-
},
25-
"CertificateAuthorityCSRCreated" : {
26-
"description" : "Wait until a Certificate Authority CSR is created",
27-
"delay" : 3,
28-
"maxAttempts" : 40,
29-
"operation" : "GetCertificateAuthorityCsr",
30-
"acceptors" : [ {
31-
"matcher" : "error",
32-
"state" : "success",
33-
"expected" : false
34-
}, {
35-
"matcher" : "error",
36-
"state" : "retry",
37-
"expected" : "RequestInProgressException"
38-
}, {
39-
"matcher" : "error",
40-
"state" : "failure",
41-
"expected" : "AccessDeniedException"
42-
} ]
43-
},
44-
"CertificateIssued" : {
45-
"description" : "Wait until a certificate is issued",
46-
"delay" : 1,
47-
"maxAttempts" : 120,
48-
"operation" : "GetCertificate",
49-
"acceptors" : [ {
50-
"matcher" : "error",
51-
"state" : "success",
52-
"expected" : false
53-
}, {
54-
"matcher" : "error",
55-
"state" : "retry",
56-
"expected" : "RequestInProgressException"
57-
}, {
58-
"matcher" : "error",
59-
"state" : "failure",
60-
"expected" : "AccessDeniedException"
61-
} ]
2+
"version": 2,
3+
"waiters": {
4+
"CertificateAuthorityCSRCreated": {
5+
"description": "Wait until a Certificate Authority CSR is created",
6+
"operation": "GetCertificateAuthorityCsr",
7+
"delay": 3,
8+
"maxAttempts": 60,
9+
"acceptors": [
10+
{
11+
"state": "success",
12+
"matcher": "status",
13+
"expected": 200
14+
},
15+
{
16+
"state": "retry",
17+
"matcher": "error",
18+
"expected": "RequestInProgressException"
19+
},
20+
{
21+
"state": "failure",
22+
"matcher": "error",
23+
"expected": "AccessDeniedException"
24+
}
25+
]
26+
},
27+
"CertificateIssued": {
28+
"description": "Wait until a certificate is issued",
29+
"operation": "GetCertificate",
30+
"delay": 1,
31+
"maxAttempts": 60,
32+
"acceptors": [
33+
{
34+
"state": "success",
35+
"matcher": "status",
36+
"expected": 200
37+
},
38+
{
39+
"state": "retry",
40+
"matcher": "error",
41+
"expected": "RequestInProgressException"
42+
},
43+
{
44+
"state": "failure",
45+
"matcher": "error",
46+
"expected": "AccessDeniedException"
47+
}
48+
]
49+
},
50+
"AuditReportCreated": {
51+
"description": "Wait until a Audit Report is created",
52+
"operation": "DescribeCertificateAuthorityAuditReport",
53+
"delay": 3,
54+
"maxAttempts": 60,
55+
"acceptors": [
56+
{
57+
"state": "success",
58+
"matcher": "path",
59+
"argument": "AuditReportStatus",
60+
"expected": "SUCCESS"
61+
},
62+
{
63+
"state": "failure",
64+
"matcher": "path",
65+
"argument": "AuditReportStatus",
66+
"expected": "FAILED"
67+
},
68+
{
69+
"state": "failure",
70+
"matcher": "error",
71+
"expected": "AccessDeniedException"
72+
}
73+
]
74+
}
6275
}
63-
}
64-
}
76+
}

0 commit comments

Comments
 (0)