This sample is part of the SDK for PHP Developer Guide topic at * https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/service_dynamodb-session-handler.html * */ // snippet-start:[dynamodb.php.session_lock.complete] // snippet-start:[dynamodb.php.session_lock.register_handler] require 'vendor/autoload.php'; use Aws\DynamoDb\SessionHandler; $sessionHandler = SessionHandler::fromClient($dynamoDb, [ 'table_name' => 'sessions' ]); $sessionHandler->register(); // snippet-end:[dynamodb.php.session_lock.register_handler] /** * Lock a DynamoDB Session. * * This code expects that you have AWS credentials set up per: * https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/guide_credentials.html * * To use the DynamoDB SessionHhandler, your configured credentials must have permission to use the DynamoDB table. */ // snippet-start:[dynamodb.php.session_lock.snippet] $sessionHandler = SessionHandler::fromClient($dynamoDb, [ 'table_name' => 'sessions', 'locking' => true, ]); // snippet-end:[dynamodb.php.session_lock.snippet] // snippet-end:[dynamodb.php.session_lock.complete] // snippet-sourceauthor:[AWS]