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