cognitosync.feature 597 B

12345678910111213141516
  1. # language: en
  2. @cognitosync @client
  3. Feature: Amazon Cognito Sync
  4. Scenario: Making a request
  5. When I call the "ListIdentityPoolUsage" API
  6. Then the value at "IdentityPoolUsages" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "DescribeIdentityPoolUsage" API with:
  9. | IdentityPoolId | us-east-1:aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee |
  10. Then I expect the response error code to be "ResourceNotFoundException"
  11. And I expect the response error message to include:
  12. """
  13. IdentityPool 'us-east-1:aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee' not found
  14. """