PHPackages                             lalcebo/aws-sdk-php-params - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. lalcebo/aws-sdk-php-params

ActiveLibrary[File &amp; Storage](/categories/file-storage)

lalcebo/aws-sdk-php-params
==========================

Provides objects for building request parameters for AWS low-level API.

v0.1.2(4y ago)012.2k↓25%MITPHPPHP ^7.2|^8.0

Since Jul 26Pushed 4y ago1 watchersCompare

[ Source](https://github.com/lalcebo/aws-sdk-php-params)[ Packagist](https://packagist.org/packages/lalcebo/aws-sdk-php-params)[ Docs](https://github.com/lalcebo/aws-sdk-php-params)[ RSS](/packages/lalcebo-aws-sdk-php-params/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (6)Versions (4)Used By (0)

AWS SDK PHP Params
==================

[](#aws-sdk-php-params)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b908e8a661f3c8a5143220ceb9e17e445d290d2571d95c9bde07aa0ce59ce043/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c616c6365626f2f6177732d73646b2d7068702d706172616d732e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d5061636b6167697374)](https://packagist.org/packages/lalcebo/aws-sdk-php-params)[![Total Downloads](https://camo.githubusercontent.com/d332e6971d0072aeb2828b4e44bd71015664da570597f02972ee84b777e9f0dd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c616c6365626f2f6177732d73646b2d7068702d706172616d732e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/lalcebo/aws-sdk-php-params)[![Tests Workflow](https://camo.githubusercontent.com/ae91e33742e778249b745fadffb1d57f3b3dcaad13c3363a3cc37835de45aac3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c616c6365626f2f6177732d73646b2d7068702d706172616d732f54657374733f7374796c653d666f722d7468652d6261646765266c6162656c3d7465737473266c6f676f3d676974687562)](https://github.com/lalcebo/aws-sdk-php-params/actions/workflows/tests.yml?query=branch%3Amaster)[![Style Workflow](https://camo.githubusercontent.com/c6178c24197ac8d2b273f329c8f37d22f0bcc673621d78632128abceffcf9384/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c616c6365626f2f6177732d73646b2d7068702d706172616d732f436f64696e672532305374616e64617264733f7374796c653d666f722d7468652d6261646765266c6162656c3d5053522d3132266c6f676f3d676974687562)](https://github.com/lalcebo/aws-sdk-php-params/actions/workflows/php-cs-fixer.yml)[![Software License](https://camo.githubusercontent.com/9985365e506123dd5b04c4fa6f08c1daa31cb6443399fd148612e7231f637c31/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666f722d7468652d626164676526636f6c6f723d626c7565)](LICENSE)

Introduction
------------

[](#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
------------

[](#requirements)

This package requires:

- PHP **^7.2** | **^8.0**

Installation
------------

[](#installation)

To get started, install the package through Composer:

```
composer require lalcebo/aws-sdk-php-params
```

#### Examples

[](#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
-----

[](#about)

I'll try to maintain this project as simple as possible, but pull requests are welcomed!

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~11 days

Total

3

Last Release

1735d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b75b23ee395ab260ff9e10b336bc985587d1760cbb0d6ce8045e84e30a0b8a31?d=identicon)[lalcebo](/maintainers/lalcebo)

---

Top Contributors

[![lalcebo](https://avatars.githubusercontent.com/u/16945969?v=4)](https://github.com/lalcebo "lalcebo (83 commits)")

---

Tags

amazonamazon-web-servicesathenaawsdynamodbgluelibraryparametersphpphp-librarys3phpamazons3sdkawsdynamodbec2cloudlibraryathenaglue

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/lalcebo-aws-sdk-php-params/health.svg)

```
[![Health](https://phpackages.com/badges/lalcebo-aws-sdk-php-params/health.svg)](https://phpackages.com/packages/lalcebo-aws-sdk-php-params)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.2k511.3M2.2k](/packages/aws-aws-sdk-php)[aws/aws-sdk-php-laravel

A simple Laravel 9/10/11/12/13 service provider for including the AWS SDK for PHP.

1.7k35.6M75](/packages/aws-aws-sdk-php-laravel)[aws/aws-sdk-php-resources

A resource-oriented API for interacting with AWS services

1381.8M10](/packages/aws-aws-sdk-php-resources)[fedemotta/yii2-aws-sdk

This extension provides the AWS SDK integration for the Yii2 framework

15430.4k2](/packages/fedemotta-yii2-aws-sdk)[platinumpixs/aws-symfony2-bundle

A simple Symfony 2 bundle for including the AWS SDK for PHP.

1274.3k1](/packages/platinumpixs-aws-symfony2-bundle)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
