FirehoseClient.php 1.1 KB

123456789101112131415161718192021222324
  1. <?php
  2. namespace Aws\Firehose;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **Amazon Kinesis Firehose** service.
  6. *
  7. * @method \Aws\Result createDeliveryStream(array $args = [])
  8. * @method \GuzzleHttp\Promise\Promise createDeliveryStreamAsync(array $args = [])
  9. * @method \Aws\Result deleteDeliveryStream(array $args = [])
  10. * @method \GuzzleHttp\Promise\Promise deleteDeliveryStreamAsync(array $args = [])
  11. * @method \Aws\Result describeDeliveryStream(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise describeDeliveryStreamAsync(array $args = [])
  13. * @method \Aws\Result listDeliveryStreams(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise listDeliveryStreamsAsync(array $args = [])
  15. * @method \Aws\Result putRecord(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise putRecordAsync(array $args = [])
  17. * @method \Aws\Result putRecordBatch(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise putRecordBatchAsync(array $args = [])
  19. * @method \Aws\Result updateDestination(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise updateDestinationAsync(array $args = [])
  21. */
  22. class FirehoseClient extends AwsClient {}