KinesisClient.php
73 lines
| 1 | <?php |
| 2 | namespace Aws\Kinesis; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * This client is used to interact with the **Amazon Kinesis** service. |
| 8 | * |
| 9 | * @method \Aws\Result addTagsToStream(array $args = []) |
| 10 | * @method \GuzzleHttp\Promise\Promise addTagsToStreamAsync(array $args = []) |
| 11 | * @method \Aws\Result createStream(array $args = []) |
| 12 | * @method \GuzzleHttp\Promise\Promise createStreamAsync(array $args = []) |
| 13 | * @method \Aws\Result decreaseStreamRetentionPeriod(array $args = []) |
| 14 | * @method \GuzzleHttp\Promise\Promise decreaseStreamRetentionPeriodAsync(array $args = []) |
| 15 | * @method \Aws\Result deleteResourcePolicy(array $args = []) |
| 16 | * @method \GuzzleHttp\Promise\Promise deleteResourcePolicyAsync(array $args = []) |
| 17 | * @method \Aws\Result deleteStream(array $args = []) |
| 18 | * @method \GuzzleHttp\Promise\Promise deleteStreamAsync(array $args = []) |
| 19 | * @method \Aws\Result deregisterStreamConsumer(array $args = []) |
| 20 | * @method \GuzzleHttp\Promise\Promise deregisterStreamConsumerAsync(array $args = []) |
| 21 | * @method \Aws\Result describeLimits(array $args = []) |
| 22 | * @method \GuzzleHttp\Promise\Promise describeLimitsAsync(array $args = []) |
| 23 | * @method \Aws\Result describeStream(array $args = []) |
| 24 | * @method \GuzzleHttp\Promise\Promise describeStreamAsync(array $args = []) |
| 25 | * @method \Aws\Result describeStreamConsumer(array $args = []) |
| 26 | * @method \GuzzleHttp\Promise\Promise describeStreamConsumerAsync(array $args = []) |
| 27 | * @method \Aws\Result describeStreamSummary(array $args = []) |
| 28 | * @method \GuzzleHttp\Promise\Promise describeStreamSummaryAsync(array $args = []) |
| 29 | * @method \Aws\Result disableEnhancedMonitoring(array $args = []) |
| 30 | * @method \GuzzleHttp\Promise\Promise disableEnhancedMonitoringAsync(array $args = []) |
| 31 | * @method \Aws\Result enableEnhancedMonitoring(array $args = []) |
| 32 | * @method \GuzzleHttp\Promise\Promise enableEnhancedMonitoringAsync(array $args = []) |
| 33 | * @method \Aws\Result getRecords(array $args = []) |
| 34 | * @method \GuzzleHttp\Promise\Promise getRecordsAsync(array $args = []) |
| 35 | * @method \Aws\Result getResourcePolicy(array $args = []) |
| 36 | * @method \GuzzleHttp\Promise\Promise getResourcePolicyAsync(array $args = []) |
| 37 | * @method \Aws\Result getShardIterator(array $args = []) |
| 38 | * @method \GuzzleHttp\Promise\Promise getShardIteratorAsync(array $args = []) |
| 39 | * @method \Aws\Result increaseStreamRetentionPeriod(array $args = []) |
| 40 | * @method \GuzzleHttp\Promise\Promise increaseStreamRetentionPeriodAsync(array $args = []) |
| 41 | * @method \Aws\Result listShards(array $args = []) |
| 42 | * @method \GuzzleHttp\Promise\Promise listShardsAsync(array $args = []) |
| 43 | * @method \Aws\Result listStreamConsumers(array $args = []) |
| 44 | * @method \GuzzleHttp\Promise\Promise listStreamConsumersAsync(array $args = []) |
| 45 | * @method \Aws\Result listStreams(array $args = []) |
| 46 | * @method \GuzzleHttp\Promise\Promise listStreamsAsync(array $args = []) |
| 47 | * @method \Aws\Result listTagsForStream(array $args = []) |
| 48 | * @method \GuzzleHttp\Promise\Promise listTagsForStreamAsync(array $args = []) |
| 49 | * @method \Aws\Result mergeShards(array $args = []) |
| 50 | * @method \GuzzleHttp\Promise\Promise mergeShardsAsync(array $args = []) |
| 51 | * @method \Aws\Result putRecord(array $args = []) |
| 52 | * @method \GuzzleHttp\Promise\Promise putRecordAsync(array $args = []) |
| 53 | * @method \Aws\Result putRecords(array $args = []) |
| 54 | * @method \GuzzleHttp\Promise\Promise putRecordsAsync(array $args = []) |
| 55 | * @method \Aws\Result putResourcePolicy(array $args = []) |
| 56 | * @method \GuzzleHttp\Promise\Promise putResourcePolicyAsync(array $args = []) |
| 57 | * @method \Aws\Result registerStreamConsumer(array $args = []) |
| 58 | * @method \GuzzleHttp\Promise\Promise registerStreamConsumerAsync(array $args = []) |
| 59 | * @method \Aws\Result removeTagsFromStream(array $args = []) |
| 60 | * @method \GuzzleHttp\Promise\Promise removeTagsFromStreamAsync(array $args = []) |
| 61 | * @method \Aws\Result splitShard(array $args = []) |
| 62 | * @method \GuzzleHttp\Promise\Promise splitShardAsync(array $args = []) |
| 63 | * @method \Aws\Result startStreamEncryption(array $args = []) |
| 64 | * @method \GuzzleHttp\Promise\Promise startStreamEncryptionAsync(array $args = []) |
| 65 | * @method \Aws\Result stopStreamEncryption(array $args = []) |
| 66 | * @method \GuzzleHttp\Promise\Promise stopStreamEncryptionAsync(array $args = []) |
| 67 | * @method \Aws\Result updateShardCount(array $args = []) |
| 68 | * @method \GuzzleHttp\Promise\Promise updateShardCountAsync(array $args = []) |
| 69 | * @method \Aws\Result updateStreamMode(array $args = []) |
| 70 | * @method \GuzzleHttp\Promise\Promise updateStreamModeAsync(array $args = []) |
| 71 | */ |
| 72 | class KinesisClient extends AwsClient {} |
| 73 |