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

Commit 455e980

Browse files
Release v1.44.174 (2023-01-05) (#4681)
Release v1.44.174 (2023-01-05) === ### Service Client Updates * `service/amplifybackend`: Updates service API and documentation * `service/apprunner`: Updates service API and documentation * `service/connect`: Updates service API * `service/emr-serverless`: Updates service API and documentation * `service/lightsail`: Updates service documentation * Documentation updates for Amazon Lightsail. * `service/mwaa`: Updates service documentation * `service/rds`: Updates service API, documentation, waiters, paginators, and examples * This release adds support for specifying which certificate authority (CA) to use for a DB instance's server certificate during DB instance creation, as well as other CA enhancements.
1 parent 67d3a1d commit 455e980

File tree

32 files changed

+3891
-499
lines changed

32 files changed

+3891
-499
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Release v1.44.174 (2023-01-05)
2+
===
3+
4+
### Service Client Updates
5+
* `service/amplifybackend`: Updates service API and documentation
6+
* `service/apprunner`: Updates service API and documentation
7+
* `service/connect`: Updates service API
8+
* `service/emr-serverless`: Updates service API and documentation
9+
* `service/lightsail`: Updates service documentation
10+
* Documentation updates for Amazon Lightsail.
11+
* `service/mwaa`: Updates service documentation
12+
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
13+
* This release adds support for specifying which certificate authority (CA) to use for a DB instance's server certificate during DB instance creation, as well as other CA enhancements.
14+
115
Release v1.44.173 (2023-01-04)
216
===
317

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.44.173"
8+
const SDKVersion = "1.44.174"

models/apis/amplifybackend/2020-08-11/api-2.json

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2131,19 +2131,6 @@
21312131
}
21322132
}
21332133
},
2134-
"GetBackendAPICodegenRespObj" : {
2135-
"type" : "structure",
2136-
"members" : {
2137-
"Models" : {
2138-
"shape" : "__string",
2139-
"locationName" : "models"
2140-
},
2141-
"Status" : {
2142-
"shape" : "Status",
2143-
"locationName" : "status"
2144-
}
2145-
}
2146-
},
21472134
"GetBackendAPIModelsRequest" : {
21482135
"type" : "structure",
21492136
"members" : {
@@ -2174,6 +2161,10 @@
21742161
"Status" : {
21752162
"shape" : "Status",
21762163
"locationName" : "status"
2164+
},
2165+
"ModelIntrospectionSchema" : {
2166+
"shape" : "__string",
2167+
"locationName" : "modelIntrospectionSchema"
21772168
}
21782169
}
21792170
},

models/apis/amplifybackend/2020-08-11/docs-2.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"GenerateBackendAPIModels" : "<p>Generates a model schema for an existing backend API resource.</p>",
1818
"GetBackend" : "<p>Provides project-level details for your Amplify UI project.</p>",
1919
"GetBackendAPI" : "<p>Gets the details for a backend API.</p>",
20-
"GetBackendAPIModels" : "<p>Generates a model schema for existing backend API resource.</p>",
20+
"GetBackendAPIModels" : "<p>Gets a model introspection schema for an existing backend API resource.</p>",
2121
"GetBackendAuth" : "<p>Gets a backend auth details.</p>",
2222
"GetBackendJob" : "<p>Returns information about a specific job.</p>",
2323
"GetBackendStorage" : "<p>Gets details for a backend storage resource.</p>",
@@ -258,7 +258,7 @@
258258
"base" : "<p>An error returned if there's a temporary issue with the service.</p>",
259259
"refs" : { }
260260
},
261-
"GetBackendAPICodegenRespObj" : {
261+
"GetBackendAPIModelsResponse" : {
262262
"base" : "<p>The response object for this operation.</p>",
263263
"refs" : { }
264264
},
@@ -450,7 +450,7 @@
450450
"Status" : {
451451
"base" : null,
452452
"refs" : {
453-
"GetBackendAPICodegenRespObj$Status" : "<p>The current status of the request.</p>"
453+
"GetBackendAPIModelsResponse$Status" : "<p>The current status of the request.</p>"
454454
}
455455
},
456456
"TooManyRequestsException" : {
@@ -750,7 +750,8 @@
750750
"DeleteBackendRespObj$Status" : "<p>The current status of the request.</p>",
751751
"EmailSettings$EmailMessage" : "<p>The contents of the email message.</p>",
752752
"EmailSettings$EmailSubject" : "<p>The contents of the subject line of the email message.</p>",
753-
"GetBackendAPICodegenRespObj$Models" : "<p>Stringified JSON of the datastore model.</p>",
753+
"GetBackendAPIModelsResponse$ModelIntrospectionSchema" : "<p>Stringified JSON of the model introspection schema for an existing backend API resource.</p>",
754+
"GetBackendAPIModelsResponse$Models" : "<p>Stringified JSON of the datastore model.</p>",
754755
"GetBackendAPIRespObj$AppId" : "<p>The app ID.</p>",
755756
"GetBackendAPIRespObj$BackendEnvironmentName" : "<p>The name of the backend environment.</p>",
756757
"GetBackendAPIRespObj$Error" : "<p>If the request fails, this error is returned.</p>",
Lines changed: 306 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,306 @@
1+
{
2+
"version": "1.0",
3+
"parameters": {
4+
"Region": {
5+
"builtIn": "AWS::Region",
6+
"required": true,
7+
"documentation": "The AWS region used to dispatch the request.",
8+
"type": "String"
9+
},
10+
"UseDualStack": {
11+
"builtIn": "AWS::UseDualStack",
12+
"required": true,
13+
"default": false,
14+
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
15+
"type": "Boolean"
16+
},
17+
"UseFIPS": {
18+
"builtIn": "AWS::UseFIPS",
19+
"required": true,
20+
"default": false,
21+
"documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
22+
"type": "Boolean"
23+
},
24+
"Endpoint": {
25+
"builtIn": "SDK::Endpoint",
26+
"required": false,
27+
"documentation": "Override the endpoint used to send this request",
28+
"type": "String"
29+
}
30+
},
31+
"rules": [
32+
{
33+
"conditions": [
34+
{
35+
"fn": "aws.partition",
36+
"argv": [
37+
{
38+
"ref": "Region"
39+
}
40+
],
41+
"assign": "PartitionResult"
42+
}
43+
],
44+
"type": "tree",
45+
"rules": [
46+
{
47+
"conditions": [
48+
{
49+
"fn": "isSet",
50+
"argv": [
51+
{
52+
"ref": "Endpoint"
53+
}
54+
]
55+
}
56+
],
57+
"type": "tree",
58+
"rules": [
59+
{
60+
"conditions": [
61+
{
62+
"fn": "booleanEquals",
63+
"argv": [
64+
{
65+
"ref": "UseFIPS"
66+
},
67+
true
68+
]
69+
}
70+
],
71+
"error": "Invalid Configuration: FIPS and custom endpoint are not supported",
72+
"type": "error"
73+
},
74+
{
75+
"conditions": [],
76+
"type": "tree",
77+
"rules": [
78+
{
79+
"conditions": [
80+
{
81+
"fn": "booleanEquals",
82+
"argv": [
83+
{
84+
"ref": "UseDualStack"
85+
},
86+
true
87+
]
88+
}
89+
],
90+
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported",
91+
"type": "error"
92+
},
93+
{
94+
"conditions": [],
95+
"endpoint": {
96+
"url": {
97+
"ref": "Endpoint"
98+
},
99+
"properties": {},
100+
"headers": {}
101+
},
102+
"type": "endpoint"
103+
}
104+
]
105+
}
106+
]
107+
},
108+
{
109+
"conditions": [
110+
{
111+
"fn": "booleanEquals",
112+
"argv": [
113+
{
114+
"ref": "UseFIPS"
115+
},
116+
true
117+
]
118+
},
119+
{
120+
"fn": "booleanEquals",
121+
"argv": [
122+
{
123+
"ref": "UseDualStack"
124+
},
125+
true
126+
]
127+
}
128+
],
129+
"type": "tree",
130+
"rules": [
131+
{
132+
"conditions": [
133+
{
134+
"fn": "booleanEquals",
135+
"argv": [
136+
true,
137+
{
138+
"fn": "getAttr",
139+
"argv": [
140+
{
141+
"ref": "PartitionResult"
142+
},
143+
"supportsFIPS"
144+
]
145+
}
146+
]
147+
},
148+
{
149+
"fn": "booleanEquals",
150+
"argv": [
151+
true,
152+
{
153+
"fn": "getAttr",
154+
"argv": [
155+
{
156+
"ref": "PartitionResult"
157+
},
158+
"supportsDualStack"
159+
]
160+
}
161+
]
162+
}
163+
],
164+
"type": "tree",
165+
"rules": [
166+
{
167+
"conditions": [],
168+
"endpoint": {
169+
"url": "https://amplifybackend-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
170+
"properties": {},
171+
"headers": {}
172+
},
173+
"type": "endpoint"
174+
}
175+
]
176+
},
177+
{
178+
"conditions": [],
179+
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
180+
"type": "error"
181+
}
182+
]
183+
},
184+
{
185+
"conditions": [
186+
{
187+
"fn": "booleanEquals",
188+
"argv": [
189+
{
190+
"ref": "UseFIPS"
191+
},
192+
true
193+
]
194+
}
195+
],
196+
"type": "tree",
197+
"rules": [
198+
{
199+
"conditions": [
200+
{
201+
"fn": "booleanEquals",
202+
"argv": [
203+
true,
204+
{
205+
"fn": "getAttr",
206+
"argv": [
207+
{
208+
"ref": "PartitionResult"
209+
},
210+
"supportsFIPS"
211+
]
212+
}
213+
]
214+
}
215+
],
216+
"type": "tree",
217+
"rules": [
218+
{
219+
"conditions": [],
220+
"type": "tree",
221+
"rules": [
222+
{
223+
"conditions": [],
224+
"endpoint": {
225+
"url": "https://amplifybackend-fips.{Region}.{PartitionResult#dnsSuffix}",
226+
"properties": {},
227+
"headers": {}
228+
},
229+
"type": "endpoint"
230+
}
231+
]
232+
}
233+
]
234+
},
235+
{
236+
"conditions": [],
237+
"error": "FIPS is enabled but this partition does not support FIPS",
238+
"type": "error"
239+
}
240+
]
241+
},
242+
{
243+
"conditions": [
244+
{
245+
"fn": "booleanEquals",
246+
"argv": [
247+
{
248+
"ref": "UseDualStack"
249+
},
250+
true
251+
]
252+
}
253+
],
254+
"type": "tree",
255+
"rules": [
256+
{
257+
"conditions": [
258+
{
259+
"fn": "booleanEquals",
260+
"argv": [
261+
true,
262+
{
263+
"fn": "getAttr",
264+
"argv": [
265+
{
266+
"ref": "PartitionResult"
267+
},
268+
"supportsDualStack"
269+
]
270+
}
271+
]
272+
}
273+
],
274+
"type": "tree",
275+
"rules": [
276+
{
277+
"conditions": [],
278+
"endpoint": {
279+
"url": "https://amplifybackend.{Region}.{PartitionResult#dualStackDnsSuffix}",
280+
"properties": {},
281+
"headers": {}
282+
},
283+
"type": "endpoint"
284+
}
285+
]
286+
},
287+
{
288+
"conditions": [],
289+
"error": "DualStack is enabled but this partition does not support DualStack",
290+
"type": "error"
291+
}
292+
]
293+
},
294+
{
295+
"conditions": [],
296+
"endpoint": {
297+
"url": "https://amplifybackend.{Region}.{PartitionResult#dnsSuffix}",
298+
"properties": {},
299+
"headers": {}
300+
},
301+
"type": "endpoint"
302+
}
303+
]
304+
}
305+
]
306+
}

0 commit comments

Comments
 (0)