PHP code example of oat-sa / lib-advkv-dynamodb

1. Go to this page and download the library: Download oat-sa/lib-advkv-dynamodb library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

oat-sa / lib-advkv-dynamodb example snippets


$client->createTable(array(
  'AttributeDefinitions' => array(
    array(
      'AttributeName' => 'key',
      'AttributeType' => 'S'
    )
  ) ,
  'KeySchema' => array(
    array(
      'AttributeName' => 'key',
      'KeyType' => 'HASH'
    )
  ) ,
  'ProvisionedThroughput' => array(
    'ReadCapacityUnits' => 10,
    'WriteCapacityUnits' => 5
  ) ,
  'TableName' => "taoKeyValueStorage"
)); 

'serviceState' => array(
    'driver' => 'oat\kvDynamoDb\DynamoDbDriver',
    'client' => array(
        'region' => 'eu-west-1',
        'scheme' => 'http'
    ),
    'table' => 'taoKeyValueStorage'
),