AthenaClient.php 1.7 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Aws\Athena;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **Amazon Athena** service.
  6. * @method \Aws\Result batchGetNamedQuery(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise batchGetNamedQueryAsync(array $args = [])
  8. * @method \Aws\Result batchGetQueryExecution(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise batchGetQueryExecutionAsync(array $args = [])
  10. * @method \Aws\Result createNamedQuery(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise createNamedQueryAsync(array $args = [])
  12. * @method \Aws\Result deleteNamedQuery(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise deleteNamedQueryAsync(array $args = [])
  14. * @method \Aws\Result getNamedQuery(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise getNamedQueryAsync(array $args = [])
  16. * @method \Aws\Result getQueryExecution(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise getQueryExecutionAsync(array $args = [])
  18. * @method \Aws\Result getQueryResults(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise getQueryResultsAsync(array $args = [])
  20. * @method \Aws\Result listNamedQueries(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise listNamedQueriesAsync(array $args = [])
  22. * @method \Aws\Result listQueryExecutions(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise listQueryExecutionsAsync(array $args = [])
  24. * @method \Aws\Result startQueryExecution(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise startQueryExecutionAsync(array $args = [])
  26. * @method \Aws\Result stopQueryExecution(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise stopQueryExecutionAsync(array $args = [])
  28. */
  29. class AthenaClient extends AwsClient {}