You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
3
3
## NOT RELEASED
4
4
5
+
### Added
6
+
7
+
- AWS api-change: This change supports the creation of multi-account global tables. It adds one new arguments to UpdateTable, GlobalTableSettingsReplicationMode.
@@ -553,6 +588,13 @@ private function requestBody(): array
553
588
if (null !== $v = $this->warmThroughput) {
554
589
$payload['WarmThroughput'] = $v->requestBody();
555
590
}
591
+
if (null !== $v = $this->globalTableSettingsReplicationMode) {
592
+
if (!GlobalTableSettingsReplicationMode::exists($v)) {
593
+
/** @psalm-suppress NoValue */
594
+
thrownewInvalidArgument(\sprintf('Invalid parameter "GlobalTableSettingsReplicationMode" for "%s". The value "%s" is not a valid "GlobalTableSettingsReplicationMode".', __CLASS__, $v));
0 commit comments