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