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

Commit 83e4721

Browse files
Release v1.50.34 (2024-03-07) (#5191)
Release v1.50.34 (2024-03-07) === ### Service Client Updates * `service/appconfig`: Updates service API and documentation * `service/ec2`: Updates service API and documentation * This release adds an optional parameter to RegisterImage and CopyImage APIs to support tagging AMIs at the time of creation. * `service/grafana`: Updates service API and documentation * `service/lambda`: Updates service documentation * Documentation updates for AWS Lambda * `service/payment-cryptography-data`: Updates service API and documentation * `service/rds`: Updates service API, documentation, waiters, paginators, and examples * Updates Amazon RDS documentation for io2 storage for Multi-AZ DB clusters * `service/snowball`: Updates service documentation * Doc-only update for change to EKS-Anywhere ordering. * `service/wafv2`: Updates service API and documentation * `service/workspaces`: Updates service documentation * Added note for user decoupling
1 parent c314bba commit 83e4721

File tree

28 files changed

+1219
-526
lines changed

28 files changed

+1219
-526
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
Release v1.50.34 (2024-03-07)
2+
===
3+
4+
### Service Client Updates
5+
* `service/appconfig`: Updates service API and documentation
6+
* `service/ec2`: Updates service API and documentation
7+
* This release adds an optional parameter to RegisterImage and CopyImage APIs to support tagging AMIs at the time of creation.
8+
* `service/grafana`: Updates service API and documentation
9+
* `service/lambda`: Updates service documentation
10+
* Documentation updates for AWS Lambda
11+
* `service/payment-cryptography-data`: Updates service API and documentation
12+
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
13+
* Updates Amazon RDS documentation for io2 storage for Multi-AZ DB clusters
14+
* `service/snowball`: Updates service documentation
15+
* Doc-only update for change to EKS-Anywhere ordering.
16+
* `service/wafv2`: Updates service API and documentation
17+
* `service/workspaces`: Updates service documentation
18+
* Added note for user decoupling
19+
120
Release v1.50.33 (2024-03-06)
221
===
322

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.50.33"
8+
const SDKVersion = "1.50.34"

models/apis/appconfig/2019-10-09/api-2.json

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1235,6 +1235,17 @@
12351235
"max":1024,
12361236
"min":0
12371237
},
1238+
"DynamicParameterKey":{
1239+
"type":"string",
1240+
"pattern":"^([^#\\n]{1,96})#([^\\/#\\n]{1,64})$"
1241+
},
1242+
"DynamicParameterMap":{
1243+
"type":"map",
1244+
"key":{"shape":"DynamicParameterKey"},
1245+
"value":{"shape":"StringWithLengthBetween1And2048"},
1246+
"max":10,
1247+
"min":1
1248+
},
12381249
"Environment":{
12391250
"type":"structure",
12401251
"members":{
@@ -1886,21 +1897,22 @@
18861897
"type":"structure",
18871898
"members":{
18881899
"Description":{"shape":"Description"},
1889-
"Required":{"shape":"Boolean"}
1900+
"Required":{"shape":"Boolean"},
1901+
"Dynamic":{"shape":"Boolean"}
18901902
}
18911903
},
18921904
"ParameterMap":{
18931905
"type":"map",
18941906
"key":{"shape":"ExtensionOrParameterName"},
18951907
"value":{"shape":"Parameter"},
1896-
"max":5,
1908+
"max":10,
18971909
"min":1
18981910
},
18991911
"ParameterValueMap":{
19001912
"type":"map",
19011913
"key":{"shape":"ExtensionOrParameterName"},
19021914
"value":{"shape":"StringWithLengthBetween1And2048"},
1903-
"max":5,
1915+
"max":10,
19041916
"min":0
19051917
},
19061918
"PayloadTooLargeException":{
@@ -1985,7 +1997,8 @@
19851997
"ConfigurationVersion":{"shape":"Version"},
19861998
"Description":{"shape":"Description"},
19871999
"Tags":{"shape":"TagMap"},
1988-
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"}
2000+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
2001+
"DynamicExtensionParameters":{"shape":"DynamicParameterMap"}
19892002
}
19902003
},
19912004
"StopDeploymentRequest":{

models/apis/appconfig/2019-10-09/docs-2.json

Lines changed: 24 additions & 10 deletions
Large diffs are not rendered by default.

models/apis/ec2/2016-11-15/api-2.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10037,7 +10037,11 @@
1003710037
"shape":"Boolean",
1003810038
"locationName":"dryRun"
1003910039
},
10040-
"CopyImageTags":{"shape":"Boolean"}
10040+
"CopyImageTags":{"shape":"Boolean"},
10041+
"TagSpecifications":{
10042+
"shape":"TagSpecificationList",
10043+
"locationName":"TagSpecification"
10044+
}
1004110045
}
1004210046
},
1004310047
"CopyImageResult":{
@@ -37029,7 +37033,11 @@
3702937033
"BootMode":{"shape":"BootModeValues"},
3703037034
"TpmSupport":{"shape":"TpmSupportValues"},
3703137035
"UefiData":{"shape":"StringType"},
37032-
"ImdsSupport":{"shape":"ImdsSupportValues"}
37036+
"ImdsSupport":{"shape":"ImdsSupportValues"},
37037+
"TagSpecifications":{
37038+
"shape":"TagSpecificationList",
37039+
"locationName":"TagSpecification"
37040+
}
3703337041
}
3703437042
},
3703537043
"RegisterImageResult":{

models/apis/ec2/2016-11-15/docs-2.json

Lines changed: 7 additions & 5 deletions
Large diffs are not rendered by default.

models/apis/grafana/2020-08-18/api-2.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,11 @@
405405
"workspaceId"
406406
],
407407
"members":{
408+
"grafanaToken":{
409+
"shape":"GrafanaToken",
410+
"location":"header",
411+
"locationName":"Grafana-Token"
412+
},
408413
"licenseType":{
409414
"shape":"LicenseType",
410415
"location":"uri",
@@ -723,6 +728,11 @@
723728
"max":2048,
724729
"min":1
725730
},
731+
"GrafanaToken":{
732+
"type":"string",
733+
"max":36,
734+
"min":1
735+
},
726736
"GrafanaVersion":{
727737
"type":"string",
728738
"max":255,
@@ -1437,6 +1447,7 @@
14371447
"endpoint":{"shape":"Endpoint"},
14381448
"freeTrialConsumed":{"shape":"Boolean"},
14391449
"freeTrialExpiration":{"shape":"Timestamp"},
1450+
"grafanaToken":{"shape":"GrafanaToken"},
14401451
"grafanaVersion":{"shape":"GrafanaVersion"},
14411452
"id":{"shape":"WorkspaceId"},
14421453
"licenseExpiration":{"shape":"Timestamp"},
@@ -1502,8 +1513,10 @@
15021513
"created":{"shape":"Timestamp"},
15031514
"description":{"shape":"Description"},
15041515
"endpoint":{"shape":"Endpoint"},
1516+
"grafanaToken":{"shape":"GrafanaToken"},
15051517
"grafanaVersion":{"shape":"GrafanaVersion"},
15061518
"id":{"shape":"WorkspaceId"},
1519+
"licenseType":{"shape":"LicenseType"},
15071520
"modified":{"shape":"Timestamp"},
15081521
"name":{"shape":"WorkspaceName"},
15091522
"notificationDestinations":{"shape":"NotificationDestinationsList"},

models/apis/grafana/2020-08-18/docs-2.json

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@
108108
"refs": {
109109
"AuthenticationDescription$providers": "<p>Specifies whether this workspace uses IAM Identity Center, SAML, or both methods to authenticate users to use the Grafana console in the Amazon Managed Grafana workspace.</p>",
110110
"AuthenticationSummary$providers": "<p>Specifies whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication.</p>",
111-
"CreateWorkspaceRequest$authenticationProviders": "<p>Specifies whether this workspace uses SAML 2.0, IAM Identity Center (successor to Single Sign-On), or both to authenticate users for using the Grafana console within a workspace. For more information, see <a href=\"https://docs.aws.amazon.com/grafana/latest/userguide/authentication-in-AMG.html\">User authentication in Amazon Managed Grafana</a>.</p>",
112-
"UpdateWorkspaceAuthenticationRequest$authenticationProviders": "<p>Specifies whether this workspace uses SAML 2.0, IAM Identity Center (successor to Single Sign-On), or both to authenticate users for using the Grafana console within a workspace. For more information, see <a href=\"https://docs.aws.amazon.com/grafana/latest/userguide/authentication-in-AMG.html\">User authentication in Amazon Managed Grafana</a>.</p>"
111+
"CreateWorkspaceRequest$authenticationProviders": "<p>Specifies whether this workspace uses SAML 2.0, IAM Identity Center, or both to authenticate users for using the Grafana console within a workspace. For more information, see <a href=\"https://docs.aws.amazon.com/grafana/latest/userguide/authentication-in-AMG.html\">User authentication in Amazon Managed Grafana</a>.</p>",
112+
"UpdateWorkspaceAuthenticationRequest$authenticationProviders": "<p>Specifies whether this workspace uses SAML 2.0, IAM Identity Center, or both to authenticate users for using the Grafana console within a workspace. For more information, see <a href=\"https://docs.aws.amazon.com/grafana/latest/userguide/authentication-in-AMG.html\">User authentication in Amazon Managed Grafana</a>.</p>"
113113
}
114114
},
115115
"AuthenticationSummary": {
@@ -130,7 +130,7 @@
130130
"refs": {
131131
"UpdateWorkspaceRequest$removeNetworkAccessConfiguration": "<p>Whether to remove the network access configuration from the workspace.</p> <p>Setting this to <code>true</code> and providing a <code>networkAccessControl</code> to set will return an error.</p> <p>If you remove this configuration by setting this to <code>true</code>, then all IP addresses and VPC endpoints will be allowed. Standard Grafana authentication and authorization will still be required.</p>",
132132
"UpdateWorkspaceRequest$removeVpcConfiguration": "<p>Whether to remove the VPC configuration from the workspace.</p> <p>Setting this to <code>true</code> and providing a <code>vpcConfiguration</code> to set will return an error.</p>",
133-
"WorkspaceDescription$freeTrialConsumed": "<p>Specifies whether this workspace has already fully used its free trial for Grafana Enterprise.</p>"
133+
"WorkspaceDescription$freeTrialConsumed": "<p>Specifies whether this workspace has already fully used its free trial for Grafana Enterprise.</p> <note> <p>Amazon Managed Grafana workspaces no longer support Grafana Enterprise free trials.</p> </note>"
134134
}
135135
},
136136
"ClientToken": {
@@ -260,13 +260,21 @@
260260
"WorkspaceSummary$endpoint": "<p>The URL endpoint to use to access the Grafana console in the workspace.</p>"
261261
}
262262
},
263+
"GrafanaToken": {
264+
"base": null,
265+
"refs": {
266+
"AssociateLicenseRequest$grafanaToken": "<p>A token from Grafana Labs that ties your Amazon Web Services account with a Grafana Labs account. For more information, see <a href=\"https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html#AMG-workspace-register-enterprise\">Register with Grafana Labs</a>.</p>",
267+
"WorkspaceDescription$grafanaToken": "<p>The token that ties this workspace to a Grafana Labs account. For more information, see <a href=\"https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html#AMG-workspace-register-enterprise\">Register with Grafana Labs</a>.</p>",
268+
"WorkspaceSummary$grafanaToken": "<p>The token that ties this workspace to a Grafana Labs account. For more information, see <a href=\"https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html#AMG-workspace-register-enterprise\">Register with Grafana Labs</a>.</p>"
269+
}
270+
},
263271
"GrafanaVersion": {
264272
"base": null,
265273
"refs": {
266-
"CreateWorkspaceRequest$grafanaVersion": "<p>Specifies the version of Grafana to support in the new workspace.</p> <p>To get a list of supported version, use the <code>ListVersions</code> operation.</p>",
274+
"CreateWorkspaceRequest$grafanaVersion": "<p>Specifies the version of Grafana to support in the new workspace. If not specified, defaults to the latest version (for example, 9.4).</p> <p>To get a list of supported versions, use the <code>ListVersions</code> operation.</p>",
267275
"DescribeWorkspaceConfigurationResponse$grafanaVersion": "<p>The supported Grafana version for the workspace.</p>",
268276
"GrafanaVersionList$member": null,
269-
"UpdateWorkspaceConfigurationRequest$grafanaVersion": "<p>Specifies the version of Grafana to support in the new workspace.</p> <p>Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4).</p> <p>To know what versions are available to upgrade to for a specific workspace, see the <code>ListVersions</code> operation.</p>",
277+
"UpdateWorkspaceConfigurationRequest$grafanaVersion": "<p>Specifies the version of Grafana to support in the workspace. If not specified, keeps the current version of the workspace.</p> <p>Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4).</p> <p>To know what versions are available to upgrade to for a specific workspace, see the <a href=\"https://docs.aws.amazon.com/grafana/latest/APIReference/API_ListVersions.html\">ListVersions</a> operation.</p>",
270278
"WorkspaceDescription$grafanaVersion": "<p>The version of Grafana supported in this workspace.</p>",
271279
"WorkspaceSummary$grafanaVersion": "<p>The Grafana version that the workspace is running.</p>"
272280
}
@@ -312,9 +320,10 @@
312320
"LicenseType": {
313321
"base": null,
314322
"refs": {
315-
"AssociateLicenseRequest$licenseType": "<p>The type of license to associate with the workspace.</p>",
323+
"AssociateLicenseRequest$licenseType": "<p>The type of license to associate with the workspace.</p> <note> <p>Amazon Managed Grafana workspaces no longer support Grafana Enterprise free trials.</p> </note>",
316324
"DisassociateLicenseRequest$licenseType": "<p>The type of license to remove from the workspace.</p>",
317-
"WorkspaceDescription$licenseType": "<p>Specifies whether this workspace has a full Grafana Enterprise license or a free trial license.</p>"
325+
"WorkspaceDescription$licenseType": "<p>Specifies whether this workspace has a full Grafana Enterprise license.</p> <note> <p>Amazon Managed Grafana workspaces no longer support Grafana Enterprise free trials.</p> </note>",
326+
"WorkspaceSummary$licenseType": "<p>Specifies whether this workspace has a full Grafana Enterprise license.</p> <note> <p>Amazon Managed Grafana workspaces no longer support Grafana Enterprise free trials.</p> </note>"
318327
}
319328
},
320329
"ListPermissionsRequest": {
@@ -657,8 +666,8 @@
657666
"base": null,
658667
"refs": {
659668
"WorkspaceDescription$created": "<p>The date that the workspace was created.</p>",
660-
"WorkspaceDescription$freeTrialExpiration": "<p>If this workspace is currently in the free trial period for Grafana Enterprise, this value specifies when that free trial ends.</p>",
661-
"WorkspaceDescription$licenseExpiration": "<p>If this workspace has a full Grafana Enterprise license, this specifies when the license ends and will need to be renewed.</p>",
669+
"WorkspaceDescription$freeTrialExpiration": "<p>If this workspace is currently in the free trial period for Grafana Enterprise, this value specifies when that free trial ends.</p> <note> <p>Amazon Managed Grafana workspaces no longer support Grafana Enterprise free trials.</p> </note>",
670+
"WorkspaceDescription$licenseExpiration": "<p>If this workspace has a full Grafana Enterprise license purchased through Amazon Web Services Marketplace, this specifies when the license ends and will need to be renewed. Purchasing the Enterprise plugins option through Amazon Managed Grafana does not have an expiration. It is valid until the license is removed.</p>",
662671
"WorkspaceDescription$modified": "<p>The most recent date that the workspace was modified.</p>",
663672
"WorkspaceSummary$created": "<p>The date that the workspace was created.</p>",
664673
"WorkspaceSummary$modified": "<p>The most recent date that the workspace was modified.</p>"

models/apis/grafana/2020-08-18/endpoint-rule-set-1.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
]
4141
}
4242
],
43-
"type": "tree",
4443
"rules": [
4544
{
4645
"conditions": [
@@ -83,7 +82,8 @@
8382
},
8483
"type": "endpoint"
8584
}
86-
]
85+
],
86+
"type": "tree"
8787
},
8888
{
8989
"conditions": [
@@ -96,7 +96,6 @@
9696
]
9797
}
9898
],
99-
"type": "tree",
10099
"rules": [
101100
{
102101
"conditions": [
@@ -110,7 +109,6 @@
110109
"assign": "PartitionResult"
111110
}
112111
],
113-
"type": "tree",
114112
"rules": [
115113
{
116114
"conditions": [
@@ -133,7 +131,6 @@
133131
]
134132
}
135133
],
136-
"type": "tree",
137134
"rules": [
138135
{
139136
"conditions": [
@@ -168,7 +165,6 @@
168165
]
169166
}
170167
],
171-
"type": "tree",
172168
"rules": [
173169
{
174170
"conditions": [],
@@ -179,14 +175,16 @@
179175
},
180176
"type": "endpoint"
181177
}
182-
]
178+
],
179+
"type": "tree"
183180
},
184181
{
185182
"conditions": [],
186183
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
187184
"type": "error"
188185
}
189-
]
186+
],
187+
"type": "tree"
190188
},
191189
{
192190
"conditions": [
@@ -200,14 +198,12 @@
200198
]
201199
}
202200
],
203-
"type": "tree",
204201
"rules": [
205202
{
206203
"conditions": [
207204
{
208205
"fn": "booleanEquals",
209206
"argv": [
210-
true,
211207
{
212208
"fn": "getAttr",
213209
"argv": [
@@ -216,11 +212,11 @@
216212
},
217213
"supportsFIPS"
218214
]
219-
}
215+
},
216+
true
220217
]
221218
}
222219
],
223-
"type": "tree",
224220
"rules": [
225221
{
226222
"conditions": [],
@@ -231,14 +227,16 @@
231227
},
232228
"type": "endpoint"
233229
}
234-
]
230+
],
231+
"type": "tree"
235232
},
236233
{
237234
"conditions": [],
238235
"error": "FIPS is enabled but this partition does not support FIPS",
239236
"type": "error"
240237
}
241-
]
238+
],
239+
"type": "tree"
242240
},
243241
{
244242
"conditions": [
@@ -252,7 +250,6 @@
252250
]
253251
}
254252
],
255-
"type": "tree",
256253
"rules": [
257254
{
258255
"conditions": [
@@ -272,7 +269,6 @@
272269
]
273270
}
274271
],
275-
"type": "tree",
276272
"rules": [
277273
{
278274
"conditions": [],
@@ -283,14 +279,16 @@
283279
},
284280
"type": "endpoint"
285281
}
286-
]
282+
],
283+
"type": "tree"
287284
},
288285
{
289286
"conditions": [],
290287
"error": "DualStack is enabled but this partition does not support DualStack",
291288
"type": "error"
292289
}
293-
]
290+
],
291+
"type": "tree"
294292
},
295293
{
296294
"conditions": [],
@@ -301,9 +299,11 @@
301299
},
302300
"type": "endpoint"
303301
}
304-
]
302+
],
303+
"type": "tree"
305304
}
306-
]
305+
],
306+
"type": "tree"
307307
},
308308
{
309309
"conditions": [],

0 commit comments

Comments
 (0)