1# language: en 2@smoke @apigateway 3Feature: API Gateway 4 5 Scenario: Making a request 6 When I call the "GetDomainNames" API 7 Then the value at "items" should be a list 8 9 Scenario: Handing errors 10 When I attempt to call the "DeleteResource" API with: 11 | resourceId | example | 12 | restApiId | foo | 13 Then I expect the response error code to be "NotFoundException"