wangyieiz/aws-lambda-app

1.0.2 2023-07-27 02:13 UTC

This package is auto-updated.

Last update: 2024-09-27 04:40:08 UTC


README

使用说明

composer require wangyieiz/aws-lambda-app
require 'vendor/autoload.php';

use Wangyi\AwsLambdaApp\Invoke;

$Invoke = new Invoke([
    'credentials' => [
        'key'    => 'your key',
        'secret' => 'your secret'
    ],
    'region' => 'ap-southeast-2',
]);
$post_data = [
    "FunctionName" => "your FunctionName",
    "Payload" => "your payload"
];
$result = $Invoke->sendMessageToLambda($post_data);