cloudwatch.feature 560 B

12345678910111213141516171819
  1. # language: en
  2. @cloudwatch @monitoring @client
  3. Feature: Amazon CloudWatch
  4. Scenario: Making a request
  5. When I call the "ListMetrics" API with:
  6. | Namespace | AWS/EC2 |
  7. Then the value at "Metrics" should be a list
  8. Scenario: Handling errors
  9. When I attempt to call the "SetAlarmState" API with:
  10. | AlarmName | abc |
  11. | StateValue | mno |
  12. | StateReason | xyz |
  13. Then I expect the response error code to be "ValidationError"
  14. And I expect the response error message to include:
  15. """
  16. failed to satisfy constraint
  17. """