acm.feature 489 B

1234567891011121314
  1. #language en
  2. @acm @client
  3. Feature: AWS Certificate Manager
  4. Scenario: Making a request
  5. When I call the "ListCertificates" API
  6. Then the request should be successful
  7. Scenario: Handling errors
  8. When I attempt to call the "GetCertificate" API with:
  9. | CertificateArn | arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 |
  10. Then I expect the response error code to be "ResourceNotFoundException"
  11. And I expect the response error message not be empty