NAME

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

DESCRIPTION

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

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

SYNOPSIS

my $qldb = Paws->service('QLDB');
my $CreateLedgerResponse = $qldb->CreateLedger(
  Name               => 'MyLedgerName',
  PermissionsMode    => 'ALLOW_ALL',
  DeletionProtection => 1,                # OPTIONAL
  Tags               => {
    'MyTagKey' => 'MyTagValue',    # key: min: 1, max: 128, value: max: 256
  },    # OPTIONAL
);

# Results:
my $Arn                = $CreateLedgerResponse->Arn;
my $CreationDateTime   = $CreateLedgerResponse->CreationDateTime;
my $DeletionProtection = $CreateLedgerResponse->DeletionProtection;
my $Name               = $CreateLedgerResponse->Name;
my $State              = $CreateLedgerResponse->State;

# Returns a L<Paws::QLDB::CreateLedgerResponse> 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/CreateLedger

ATTRIBUTES

DeletionProtection => Bool

The flag that prevents a ledger from being deleted by any user. If not provided on ledger creation, this feature is enabled (true) by default.

If deletion protection is enabled, you must first disable it before you can delete the ledger using the QLDB API or the AWS Command Line Interface (AWS CLI). You can disable it by calling the UpdateLedger operation to set the flag to false. The QLDB console disables deletion protection for you when you use it to delete a ledger.

REQUIRED Name => Str

The name of the ledger that you want to create. The name must be unique among all of your ledgers in the current AWS Region.

REQUIRED PermissionsMode => Str

The permissions mode to assign to the ledger that you want to create.

Valid values are: "ALLOW_ALL"

Tags => Paws::QLDB::Tags

The key-value pairs to add as tags to the ledger that you want to create. Tag keys are case sensitive. Tag values are case sensitive and can be null.

SEE ALSO

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

BUGS and CONTRIBUTIONS

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