configservice.feature 555 B

1234567891011121314151617
  1. # language: en
  2. @configservice @config @client
  3. Feature: AWS Config
  4. Scenario: Making a request
  5. When I call the "DescribeConfigurationRecorders" API
  6. Then the value at "ConfigurationRecorders" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "GetResourceConfigHistory" API with:
  9. | resourceType | fake-type |
  10. | resourceId | fake-id |
  11. Then I expect the response error code to be "ValidationException"
  12. And I expect the response error message to include:
  13. """
  14. failed to satisfy constraint
  15. """