Skip to content

Commit 5d6b248

Browse files
Merging v1.2.33 release
2 parents a8d7673 + dd3a4bc commit 5d6b248

File tree

7 files changed

+522
-21
lines changed

7 files changed

+522
-21
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [1.2.33] - 06/13/2024
4+
5+
### Features
6+
* (**cloudhsmv2**) Added support for hsm type hsm2m.medium. Added supported for creating a cluster in FIPS or NON_FIPS mode.
7+
* (**glue**) This release adds support for configuration of evaluation method for composite rules in Glue Data Quality rulesets.
8+
* (**iotwireless**) Add RoamingDeviceSNR and RoamingDeviceRSSI to Customer Metrics.
9+
* (**kms**) 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.
10+
* (**mediapackagev2**) This release adds support for CMAF ingest (DASH-IF live media ingest protocol interface 1)
11+
312
## [1.2.32] - 06/12/2024
413

514
### Features

codegen/sdk/aws-models/cloudhsm-v2.json

Lines changed: 54 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,18 @@
9898
"traits": {
9999
"smithy.api#documentation": "<p>The list of tags for the backup.</p>"
100100
}
101+
},
102+
"HsmType": {
103+
"target": "com.amazonaws.cloudhsmv2#HsmType",
104+
"traits": {
105+
"smithy.api#documentation": "<p>The HSM type of the cluster that was backed up.</p>"
106+
}
107+
},
108+
"Mode": {
109+
"target": "com.amazonaws.cloudhsmv2#ClusterMode",
110+
"traits": {
111+
"smithy.api#documentation": "<p>The mode of the cluster that was backed up.</p>"
112+
}
101113
}
102114
},
103115
"traits": {
@@ -1232,7 +1244,7 @@
12321244
"traits": {
12331245
"smithy.api#length": {
12341246
"min": 0,
1235-
"max": 5000
1247+
"max": 20000
12361248
},
12371249
"smithy.api#pattern": "^[a-zA-Z0-9+-/=\\s]*$"
12381250
}
@@ -1439,6 +1451,12 @@
14391451
"traits": {
14401452
"smithy.api#documentation": "<p>The list of tags for the cluster.</p>"
14411453
}
1454+
},
1455+
"Mode": {
1456+
"target": "com.amazonaws.cloudhsmv2#ClusterMode",
1457+
"traits": {
1458+
"smithy.api#documentation": "<p>The mode of the cluster.</p>"
1459+
}
14421460
}
14431461
},
14441462
"traits": {
@@ -1451,6 +1469,23 @@
14511469
"smithy.api#pattern": "^cluster-[2-7a-zA-Z]{11,16}$"
14521470
}
14531471
},
1472+
"com.amazonaws.cloudhsmv2#ClusterMode": {
1473+
"type": "enum",
1474+
"members": {
1475+
"FIPS": {
1476+
"target": "smithy.api#Unit",
1477+
"traits": {
1478+
"smithy.api#enumValue": "FIPS"
1479+
}
1480+
},
1481+
"NON_FIPS": {
1482+
"target": "smithy.api#Unit",
1483+
"traits": {
1484+
"smithy.api#enumValue": "NON_FIPS"
1485+
}
1486+
}
1487+
}
1488+
},
14541489
"com.amazonaws.cloudhsmv2#ClusterState": {
14551490
"type": "enum",
14561491
"members": {
@@ -1643,7 +1678,7 @@
16431678
"HsmType": {
16441679
"target": "com.amazonaws.cloudhsmv2#HsmType",
16451680
"traits": {
1646-
"smithy.api#documentation": "<p>The type of HSM to use in the cluster. Currently the only allowed value is\n <code>hsm1.medium</code>.</p>",
1681+
"smithy.api#documentation": "<p>The type of HSM to use in the cluster. The allowed values are\n <code>hsm1.medium</code> and <code>hsm2m.medium</code>.</p>",
16471682
"smithy.api#required": {}
16481683
}
16491684
},
@@ -1665,6 +1700,12 @@
16651700
"traits": {
16661701
"smithy.api#documentation": "<p>Tags to apply to the CloudHSM cluster during creation.</p>"
16671702
}
1703+
},
1704+
"Mode": {
1705+
"target": "com.amazonaws.cloudhsmv2#ClusterMode",
1706+
"traits": {
1707+
"smithy.api#documentation": "<p>The mode to use in the cluster. The allowed values are\n <code>FIPS</code> and <code>NON_FIPS</code>.</p>"
1708+
}
16681709
}
16691710
},
16701711
"traits": {
@@ -2186,6 +2227,12 @@
21862227
},
21872228
"value": {
21882229
"target": "com.amazonaws.cloudhsmv2#Strings"
2230+
},
2231+
"traits": {
2232+
"smithy.api#length": {
2233+
"min": 0,
2234+
"max": 30
2235+
}
21892236
}
21902237
},
21912238
"com.amazonaws.cloudhsmv2#Hsm": {
@@ -2289,7 +2336,11 @@
22892336
"com.amazonaws.cloudhsmv2#HsmType": {
22902337
"type": "string",
22912338
"traits": {
2292-
"smithy.api#pattern": "^(hsm1\\.medium)$"
2339+
"smithy.api#length": {
2340+
"min": 0,
2341+
"max": 32
2342+
},
2343+
"smithy.api#pattern": "^((p|)hsm[0-9][a-z.]*\\.[a-zA-Z]+)$"
22932344
}
22942345
},
22952346
"com.amazonaws.cloudhsmv2#Hsms": {

codegen/sdk/aws-models/glue.json

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10639,6 +10639,23 @@
1063910639
"target": "com.amazonaws.glue#GenericString"
1064010640
}
1064110641
},
10642+
"com.amazonaws.glue#DQCompositeRuleEvaluationMethod": {
10643+
"type": "enum",
10644+
"members": {
10645+
"COLUMN": {
10646+
"target": "smithy.api#Unit",
10647+
"traits": {
10648+
"smithy.api#enumValue": "COLUMN"
10649+
}
10650+
},
10651+
"ROW": {
10652+
"target": "smithy.api#Unit",
10653+
"traits": {
10654+
"smithy.api#enumValue": "ROW"
10655+
}
10656+
}
10657+
}
10658+
},
1064210659
"com.amazonaws.glue#DQDLAliases": {
1064310660
"type": "map",
1064410661
"key": {
@@ -10874,6 +10891,12 @@
1087410891
"traits": {
1087510892
"smithy.api#documentation": "<p>Prefix for Amazon S3 to store results.</p>"
1087610893
}
10894+
},
10895+
"CompositeRuleEvaluationMethod": {
10896+
"target": "com.amazonaws.glue#DQCompositeRuleEvaluationMethod",
10897+
"traits": {
10898+
"smithy.api#documentation": "<p>Set the evaluation method for composite rules in the ruleset to ROW/COLUMN</p>"
10899+
}
1087710900
}
1087810901
},
1087910902
"traits": {
@@ -16713,7 +16736,7 @@
1671316736
"RulesetNames": {
1671416737
"target": "com.amazonaws.glue#RulesetNames",
1671516738
"traits": {
16716-
"smithy.api#documentation": "<p>A list of ruleset names for the run.</p>"
16739+
"smithy.api#documentation": "<p>A list of ruleset names for the run. Currently, this parameter takes only one Ruleset name.</p>"
1671716740
}
1671816741
},
1671916742
"ResultIds": {

codegen/sdk/aws-models/iot-wireless.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10165,6 +10165,18 @@
1016510165
"smithy.api#enumValue": "DeviceSNR"
1016610166
}
1016710167
},
10168+
"DeviceRoamingRSSI": {
10169+
"target": "smithy.api#Unit",
10170+
"traits": {
10171+
"smithy.api#enumValue": "DeviceRoamingRSSI"
10172+
}
10173+
},
10174+
"DeviceRoamingSNR": {
10175+
"target": "smithy.api#Unit",
10176+
"traits": {
10177+
"smithy.api#enumValue": "DeviceRoamingSNR"
10178+
}
10179+
},
1016810180
"DeviceUplinkCount": {
1016910181
"target": "smithy.api#Unit",
1017010182
"traits": {

0 commit comments

Comments
 (0)