CloudWatchClient.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace Aws\CloudWatch;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **Amazon CloudWatch** service.
  6. *
  7. * @method \Aws\Result deleteAlarms(array $args = [])
  8. * @method \GuzzleHttp\Promise\Promise deleteAlarmsAsync(array $args = [])
  9. * @method \Aws\Result deleteDashboards(array $args = [])
  10. * @method \GuzzleHttp\Promise\Promise deleteDashboardsAsync(array $args = [])
  11. * @method \Aws\Result describeAlarmHistory(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise describeAlarmHistoryAsync(array $args = [])
  13. * @method \Aws\Result describeAlarms(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise describeAlarmsAsync(array $args = [])
  15. * @method \Aws\Result describeAlarmsForMetric(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise describeAlarmsForMetricAsync(array $args = [])
  17. * @method \Aws\Result disableAlarmActions(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise disableAlarmActionsAsync(array $args = [])
  19. * @method \Aws\Result enableAlarmActions(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise enableAlarmActionsAsync(array $args = [])
  21. * @method \Aws\Result getDashboard(array $args = [])
  22. * @method \GuzzleHttp\Promise\Promise getDashboardAsync(array $args = [])
  23. * @method \Aws\Result getMetricStatistics(array $args = [])
  24. * @method \GuzzleHttp\Promise\Promise getMetricStatisticsAsync(array $args = [])
  25. * @method \Aws\Result listDashboards(array $args = [])
  26. * @method \GuzzleHttp\Promise\Promise listDashboardsAsync(array $args = [])
  27. * @method \Aws\Result listMetrics(array $args = [])
  28. * @method \GuzzleHttp\Promise\Promise listMetricsAsync(array $args = [])
  29. * @method \Aws\Result putDashboard(array $args = [])
  30. * @method \GuzzleHttp\Promise\Promise putDashboardAsync(array $args = [])
  31. * @method \Aws\Result putMetricAlarm(array $args = [])
  32. * @method \GuzzleHttp\Promise\Promise putMetricAlarmAsync(array $args = [])
  33. * @method \Aws\Result putMetricData(array $args = [])
  34. * @method \GuzzleHttp\Promise\Promise putMetricDataAsync(array $args = [])
  35. * @method \Aws\Result setAlarmState(array $args = [])
  36. * @method \GuzzleHttp\Promise\Promise setAlarmStateAsync(array $args = [])
  37. */
  38. class CloudWatchClient extends AwsClient {}