Skip to content

Commit 9df4328

Browse files
Release v1.54.1 (2024-06-13) (#5286)
Release v1.54.1 (2024-06-13) === ### Service Client Updates * `service/cloudhsmv2`: Updates service API and documentation * Added support for hsm type hsm2m.medium. Added supported for creating a cluster in FIPS or NON_FIPS mode. * `service/glue`: Updates service API and documentation * This release adds support for configuration of evaluation method for composite rules in Glue Data Quality rulesets. * `service/iotwireless`: Updates service API * `service/kms`: Updates service API, documentation, and examples * This feature allows customers to use their keys stored in KMS to derive a shared secret which can then be used to establish a secured channel for communication, provide proof of possession, or establish trust with other parties. * `service/mediapackagev2`: Updates service API, documentation, and examples
1 parent 0e3fe6f commit 9df4328

File tree

24 files changed

+4768
-92
lines changed

24 files changed

+4768
-92
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Release v1.54.1 (2024-06-13)
2+
===
3+
4+
### Service Client Updates
5+
* `service/cloudhsmv2`: Updates service API and documentation
6+
* Added support for hsm type hsm2m.medium. Added supported for creating a cluster in FIPS or NON_FIPS mode.
7+
* `service/glue`: Updates service API and documentation
8+
* This release adds support for configuration of evaluation method for composite rules in Glue Data Quality rulesets.
9+
* `service/iotwireless`: Updates service API
10+
* `service/kms`: Updates service API, documentation, and examples
11+
* This feature allows customers to use their keys stored in KMS to derive a shared secret which can then be used to establish a secured channel for communication, provide proof of possession, or establish trust with other parties.
12+
* `service/mediapackagev2`: Updates service API, documentation, and examples
13+
114
Release v1.54.0 (2024-06-12)
215
===
316

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.0"
8+
const SDKVersion = "1.54.1"

models/apis/cloudhsmv2/2017-04-28/api-2.json

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"endpointPrefix":"cloudhsmv2",
66
"jsonVersion":"1.1",
77
"protocol":"json",
8+
"protocols":["json"],
89
"serviceAbbreviation":"CloudHSM V2",
910
"serviceFullName":"AWS CloudHSM V2",
1011
"serviceId":"CloudHSM V2",
@@ -277,7 +278,9 @@
277278
"SourceBackup":{"shape":"BackupId"},
278279
"SourceCluster":{"shape":"ClusterId"},
279280
"DeleteTimestamp":{"shape":"Timestamp"},
280-
"TagList":{"shape":"TagList"}
281+
"TagList":{"shape":"TagList"},
282+
"HsmType":{"shape":"HsmType"},
283+
"Mode":{"shape":"ClusterMode"}
281284
}
282285
},
283286
"BackupId":{
@@ -326,7 +329,7 @@
326329
"Boolean":{"type":"boolean"},
327330
"Cert":{
328331
"type":"string",
329-
"max":5000,
332+
"max":20000,
330333
"pattern":"[a-zA-Z0-9+-/=\\s]*"
331334
},
332335
"Certificates":{
@@ -399,13 +402,21 @@
399402
"SubnetMapping":{"shape":"ExternalSubnetMapping"},
400403
"VpcId":{"shape":"VpcId"},
401404
"Certificates":{"shape":"Certificates"},
402-
"TagList":{"shape":"TagList"}
405+
"TagList":{"shape":"TagList"},
406+
"Mode":{"shape":"ClusterMode"}
403407
}
404408
},
405409
"ClusterId":{
406410
"type":"string",
407411
"pattern":"cluster-[2-7a-zA-Z]{11,16}"
408412
},
413+
"ClusterMode":{
414+
"type":"string",
415+
"enum":[
416+
"FIPS",
417+
"NON_FIPS"
418+
]
419+
},
409420
"ClusterState":{
410421
"type":"string",
411422
"enum":[
@@ -458,7 +469,8 @@
458469
"HsmType":{"shape":"HsmType"},
459470
"SourceBackupId":{"shape":"BackupId"},
460471
"SubnetIds":{"shape":"SubnetIds"},
461-
"TagList":{"shape":"TagList"}
472+
"TagList":{"shape":"TagList"},
473+
"Mode":{"shape":"ClusterMode"}
462474
}
463475
},
464476
"CreateClusterResponse":{
@@ -587,7 +599,8 @@
587599
"Filters":{
588600
"type":"map",
589601
"key":{"shape":"Field"},
590-
"value":{"shape":"Strings"}
602+
"value":{"shape":"Strings"},
603+
"max":30
591604
},
592605
"Hsm":{
593606
"type":"structure",
@@ -619,7 +632,8 @@
619632
},
620633
"HsmType":{
621634
"type":"string",
622-
"pattern":"(hsm1\\.medium)"
635+
"max":32,
636+
"pattern":"((p|)hsm[0-9][a-z.]*\\.[a-zA-Z]+)"
623637
},
624638
"Hsms":{
625639
"type":"list",

models/apis/cloudhsmv2/2017-04-28/docs-2.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,14 @@
166166
"ModifyClusterRequest$ClusterId": "<p>The identifier (ID) of the cluster that you want to modify. To find the cluster ID, use <a>DescribeClusters</a>.</p>"
167167
}
168168
},
169+
"ClusterMode": {
170+
"base": null,
171+
"refs": {
172+
"Backup$Mode": "<p>The mode of the cluster that was backed up.</p>",
173+
"Cluster$Mode": "<p>The mode of the cluster.</p>",
174+
"CreateClusterRequest$Mode": "<p>The mode to use in the cluster. The allowed values are <code>FIPS</code> and <code>NON_FIPS</code>.</p>"
175+
}
176+
},
169177
"ClusterState": {
170178
"base": null,
171179
"refs": {
@@ -329,8 +337,9 @@
329337
"HsmType": {
330338
"base": null,
331339
"refs": {
340+
"Backup$HsmType": "<p>The HSM type of the cluster that was backed up.</p>",
332341
"Cluster$HsmType": "<p>The type of HSM that the cluster contains.</p>",
333-
"CreateClusterRequest$HsmType": "<p>The type of HSM to use in the cluster. Currently the only allowed value is <code>hsm1.medium</code>.</p>"
342+
"CreateClusterRequest$HsmType": "<p>The type of HSM to use in the cluster. The allowed values are <code>hsm1.medium</code> and <code>hsm2m.medium</code>.</p>"
334343
}
335344
},
336345
"Hsms": {

0 commit comments

Comments
 (0)