/usr/share/php/Aws/DynamoDbStreams/DynamoDbStreamsClient.php is in php-aws-sdk 3.15.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <?php
namespace Aws\DynamoDbStreams;
use Aws\AwsClient;
use Aws\DynamoDb\DynamoDbClient;
/**
* This client is used to interact with the **Amazon DynamoDb Streams** service.
*
* @method \Aws\Result describeStream(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeStreamAsync(array $args = [])
* @method \Aws\Result getRecords(array $args = [])
* @method \GuzzleHttp\Promise\Promise getRecordsAsync(array $args = [])
* @method \Aws\Result getShardIterator(array $args = [])
* @method \GuzzleHttp\Promise\Promise getShardIteratorAsync(array $args = [])
* @method \Aws\Result listStreams(array $args = [])
* @method \GuzzleHttp\Promise\Promise listStreamsAsync(array $args = [])
*/
class DynamoDbStreamsClient extends AwsClient
{
public static function getArguments()
{
$args = parent::getArguments();
$args['retries']['default'] = 11;
$args['retries']['fn'] = [DynamoDbClient::class, '_applyRetryConfig'];
return $args;
}
}
|