PHP Classes

File: application/modules/extensions/aws/Aws/DynamoDbStreams/DynamoDbStreamsClient.php

Recommend this page to a friend!
  Classes of Tran Tuan   Pretty PHP S3 Files Manager   application/modules/extensions/aws/Aws/DynamoDbStreams/DynamoDbStreamsClient.php   Download  
File: application/modules/extensions/aws/Aws/DynamoDbStreams/DynamoDbStreamsClient.php
Role: Application script
Content type: text/plain
Description: Application script
Class: Pretty PHP S3 Files Manager
Web based interface to manage files in Amazon S3
Author: By
Last change:
Date: 8 years ago
Size: 992 bytes
 

Contents

Class file image Download
<?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;
    }
}