Update Ledger Permissions Mode
qldb_update_ledger_permissions_mode | R Documentation |
Updates the permissions mode of a ledger¶
Description¶
Updates the permissions mode of a ledger.
Before you switch to the STANDARD
permissions mode, you must first
create all required IAM policies and table tags to avoid disruption to
your users. To learn more, see Migrating to the standard permissions
mode
in the Amazon QLDB Developer Guide.
Usage¶
qldb_update_ledger_permissions_mode(Name, PermissionsMode)
Arguments¶
Name |
[required] The name of the ledger. |
PermissionsMode |
[required] The permissions mode to assign to the ledger. This parameter can have one of the following values:
We strongly recommend using the |
Value¶
A list with the following syntax:
list(
Name = "string",
Arn = "string",
PermissionsMode = "ALLOW_ALL"|"STANDARD"
)
Request syntax¶
svc$update_ledger_permissions_mode(
Name = "string",
PermissionsMode = "ALLOW_ALL"|"STANDARD"
)