cloudhsm.feature 493 B

12345678910111213141516
  1. # language: en
  2. @cloudhsm @client
  3. Feature: Amazon CloudHSM
  4. Scenario: Making a request
  5. When I call the "ListHapgs" API
  6. Then the value at "HapgList" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "DescribeHapg" API with:
  9. | HapgArn | bogus-arn |
  10. Then I expect the response error code to be "ValidationException"
  11. And I expect the response error message to include:
  12. """
  13. Value 'bogus-arn' at 'hapgArn' failed to satisfy constraint
  14. """