GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Paws::QLDB::UpdateLedgerPermissionsMode(3) User Contributed Perl Documentation Paws::QLDB::UpdateLedgerPermissionsMode(3)

Paws::QLDB::UpdateLedgerPermissionsMode - Arguments for method UpdateLedgerPermissionsMode on Paws::QLDB

This class represents the parameters used for calling the method UpdateLedgerPermissionsMode on the Amazon QLDB service. Use the attributes of this class as arguments to method UpdateLedgerPermissionsMode.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateLedgerPermissionsMode.

    my $qldb = Paws->service('QLDB');
    my $UpdateLedgerPermissionsModeResponse =
      $qldb->UpdateLedgerPermissionsMode(
      Name            => 'MyLedgerName',
      PermissionsMode => 'ALLOW_ALL',
      );
    # Results:
    my $Arn             = $UpdateLedgerPermissionsModeResponse->Arn;
    my $Name            = $UpdateLedgerPermissionsModeResponse->Name;
    my $PermissionsMode = $UpdateLedgerPermissionsModeResponse->PermissionsMode;
    # Returns a L<Paws::QLDB::UpdateLedgerPermissionsModeResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/qldb/UpdateLedgerPermissionsMode>

REQUIRED Name => Str

The name of the ledger.

REQUIRED PermissionsMode => Str

The permissions mode to assign to the ledger. This parameter can have one of the following values:

  • "ALLOW_ALL": A legacy permissions mode that enables access control with API-level granularity for ledgers.

    This mode allows users who have the "SendCommand" API permission for this ledger to run all PartiQL commands (hence, "ALLOW_ALL") on any tables in the specified ledger. This mode disregards any table-level or command-level IAM permissions policies that you create for the ledger.

  • "STANDARD": (Recommended) A permissions mode that enables access control with finer granularity for ledgers, tables, and PartiQL commands.

    By default, this mode denies all user requests to run any PartiQL commands on any tables in this ledger. To allow PartiQL commands to run, you must create IAM permissions policies for specific table resources and PartiQL actions, in addition to the "SendCommand" API permission for the ledger. For information, see Getting started with the standard permissions mode (https://docs.aws.amazon.com/qldb/latest/developerguide/getting-started-standard-mode.html) in the Amazon QLDB Developer Guide.

We strongly recommend using the "STANDARD" permissions mode to maximize the security of your ledger data.

Valid values are: "ALLOW_ALL", "STANDARD"

This class forms part of Paws, documenting arguments for method UpdateLedgerPermissionsMode in Paws::QLDB

The source code is located here: <https://github.com/pplu/aws-sdk-perl>

Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>

2022-06-01 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.