1# language: en
2@directconnect @client
3Feature: AWS Direct Connect
4
5  Scenario: Making a request
6    When I call the "DescribeConnections" API
7    Then the value at "connections" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "DescribeConnections" API with:
11      | ConnectionId | fake-connection |
12    Then I expect the response error code to be "DirectConnectClientException"
13    And I expect the response error message to include:
14    """
15    Connection ID fake-connection has an invalid format
16    """
17