lalcebo / aws-sdk-php-params
Provides objects for building request parameters for AWS low-level API.
Installs: 8 768
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.2|^8.0
- ext-ctype: *
- ext-json: *
- lalcebo/sdk-php-helpers: ^0.1|^1.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.18
- php-parallel-lint/php-console-highlighter: ^0.5.0
- php-parallel-lint/php-parallel-lint: ^1.2
- phpunit/phpunit: ^8.0|^9.4
- roave/security-advisories: dev-master
This package is auto-updated.
Last update: 2025-03-07 03:29:11 UTC
README
Introduction
The AWS SDK for PHP uses arrays associated with very specific structures as arguments to its methods, this leads to a great dependency on the documentation to create these arrays, what are the optional keys, their possible values, etc. This package provides objects for building request parameters for AWS low-level API.
Requirements
This package requires:
- PHP ^7.2 | ^8.0
Installation
To get started, install the package through Composer:
composer require lalcebo/aws-sdk-php-params
Examples
# Athena use Aws\Sdk; use Lalcebo\Aws\Params\Athena\Actions\StartQueryExecution; use Lalcebo\Aws\Params\Athena\DataTypes\QueryExecutionContext; use Lalcebo\Aws\Params\Athena\DataTypes\ResultConfiguration; try { $sdk = new Sdk([ 'region' => 'us-west-2', 'version' => 'latest' ]); $athenaClient = $sdk->createAthena(); $startQueryExecution = new StartQueryExecution( 'SELECT * FROM tbl', bin2hex(random_bytes(64)), new QueryExecutionContext('catalogName', 'dbName'), new ResultConfiguration(null, 's3://athena-result-bucket/') ); $result = $athenaClient->startQueryExecution($startQueryExecution->toArray()); print_r($result); } catch (Throwable $e) { echo $e->getMessage(); }
# DynamoDB use Aws\Sdk; use Lalcebo\Aws\Params\DynamoDB\Actions\CreateTable; use Lalcebo\Aws\Params\DynamoDB\DataTypes\AttributeDefinition; use Lalcebo\Aws\Params\DynamoDB\DataTypes\KeySchemaElement; use Lalcebo\Aws\Params\DynamoDB\DataTypes\ProvisionedThroughput; try { $sdk = new Sdk([ 'endpoint' => 'http://localhost:8000', 'region' => 'us-west-2', 'version' => 'latest' ]); $dynamodb = $sdk->createDynamoDb(); $createTable = new CreateTable( 'Music', [ new AttributeDefinition('Artist', AttributeDefinition\AttributeType::STRING), new AttributeDefinition('SongTitle', AttributeDefinition\AttributeType::STRING), ], [ new KeySchemaElement('Artist', KeySchemaElement\KeyType::HASH), new KeySchemaElement('SongTitle', KeySchemaElement\KeyType::RANGE), ], null, null, null, new ProvisionedThroughput(10, 5) ); $result = $dynamodb->createTable($createTable->toArray()); print_r($result); } catch (Throwable $e) { echo $e->getMessage(); }
About
I'll try to maintain this project as simple as possible, but pull requests are welcomed!
License
The MIT License (MIT). Please see License File for more information.