kms.feature 494 B

1234567891011121314151617
  1. # language: en
  2. @kms @client
  3. Feature: Amazon Key Management Service
  4. Scenario: Making a request
  5. When I call the "ListAliases" API
  6. Then the value at "Aliases" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "GetKeyPolicy" API with:
  9. | KeyId | fake-key |
  10. | PolicyName | fake-policy |
  11. Then I expect the response error code to be "NotFoundException"
  12. And I expect the response error message to include:
  13. """
  14. does not exist
  15. """