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::DynamoDB::RestoreTableFromBackup(3) User Contributed Perl Documentation Paws::DynamoDB::RestoreTableFromBackup(3)

Paws::DynamoDB::RestoreTableFromBackup - Arguments for method RestoreTableFromBackup on Paws::DynamoDB

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

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

    my $dynamodb = Paws->service('DynamoDB');
    my $RestoreTableFromBackupOutput = $dynamodb->RestoreTableFromBackup(
      BackupArn                    => 'MyBackupArn',
      TargetTableName              => 'MyTableName',
      BillingModeOverride          => 'PROVISIONED',    # OPTIONAL
      GlobalSecondaryIndexOverride => [
        {
          IndexName => 'MyIndexName',                   # min: 3, max: 255
          KeySchema => [
            {
              AttributeName => 'MyKeySchemaAttributeName', # min: 1, max: 255
              KeyType       => 'HASH',                     # values: HASH, RANGE
            },
            ...
          ],    # min: 1, max: 2
          Projection => {
            NonKeyAttributes => [
              'MyNonKeyAttributeName', ...    # min: 1, max: 255
            ],    # min: 1, max: 20; OPTIONAL
            ProjectionType => 'ALL', # values: ALL, KEYS_ONLY, INCLUDE; OPTIONAL
          },
          ProvisionedThroughput => {
            ReadCapacityUnits  => 1,    # min: 1
            WriteCapacityUnits => 1,    # min: 1
          },    # OPTIONAL
        },
        ...
      ],    # OPTIONAL
      LocalSecondaryIndexOverride => [
        {
          IndexName => 'MyIndexName',    # min: 3, max: 255
          KeySchema => [
            {
              AttributeName => 'MyKeySchemaAttributeName', # min: 1, max: 255
              KeyType       => 'HASH',                     # values: HASH, RANGE
            },
            ...
          ],    # min: 1, max: 2
          Projection => {
            NonKeyAttributes => [
              'MyNonKeyAttributeName', ...    # min: 1, max: 255
            ],    # min: 1, max: 20; OPTIONAL
            ProjectionType => 'ALL', # values: ALL, KEYS_ONLY, INCLUDE; OPTIONAL
          },
        },
        ...
      ],    # OPTIONAL
      ProvisionedThroughputOverride => {
        ReadCapacityUnits  => 1,    # min: 1
        WriteCapacityUnits => 1,    # min: 1
      },    # OPTIONAL
      SSESpecificationOverride => {
        Enabled        => 1,                     # OPTIONAL
        KMSMasterKeyId => 'MyKMSMasterKeyId',    # OPTIONAL
        SSEType        => 'AES256',              # values: AES256, KMS; OPTIONAL
      },    # OPTIONAL
    );
    # Results:
    my $TableDescription = $RestoreTableFromBackupOutput->TableDescription;
    # Returns a L<Paws::DynamoDB::RestoreTableFromBackupOutput> 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/dynamodb/RestoreTableFromBackup>

REQUIRED BackupArn => Str

The Amazon Resource Name (ARN) associated with the backup.

The billing mode of the restored table.

Valid values are: "PROVISIONED", "PAY_PER_REQUEST"

List of global secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.

List of local secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.

Provisioned throughput settings for the restored table.

The new server-side encryption settings for the restored table.

REQUIRED TargetTableName => Str

The name of the new table to which the backup must be restored.

This class forms part of Paws, documenting arguments for method RestoreTableFromBackup in Paws::DynamoDB

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.