1# language: en
2@smoke @cognitoidentity
3Feature: Amazon Cognito Idenity
4
5  Scenario: Making a request
6    When I call the "ListIdentityPools" API with:
7      | MaxResults | 10 |
8    Then the value at "IdentityPools" should be a list
9
10  Scenario: Handling errors
11    When I attempt to call the "DescribeIdentityPool" API with:
12      | IdentityPoolId | us-east-1:aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee |
13    Then I expect the response error code to be "ResourceNotFoundException"
14