cloudwatchlogs.feature 541 B

1234567891011121314151617
  1. # language: en
  2. @cloudwatchlogs @logs
  3. Feature: Amazon CloudWatch Logs
  4. Scenario: Making a request
  5. When I call the "DescribeLogGroups" API
  6. Then the value at "logGroups" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "GetLogEvents" API with:
  9. | logGroupName | fakegroup |
  10. | logStreamName | fakestream |
  11. Then I expect the response error code to be "ResourceNotFoundException"
  12. And I expect the response error message to include:
  13. """
  14. The specified log group does not exist.
  15. """