sts.feature 497 B

1234567891011121314151617
  1. # language: en
  2. @sts @client
  3. Feature: AWS STS
  4. Scenario: Making a request
  5. When I call the "GetSessionToken" API
  6. Then the response should contain a "Credentials"
  7. Scenario: Handling errors
  8. When I attempt to call the "GetFederationToken" API with:
  9. | Name | temp |
  10. | Policy | |
  11. Then I expect the response error code to be "ValidationError"
  12. And I expect the response error message to include:
  13. """
  14. Value '' at 'policy' failed to satisfy constraint
  15. """