kms.feature 402 B

12345678910111213
  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 | fakepolicy |
  11. Then I expect the response error code to be "NotFoundException"