machinelearning.feature 528 B

123456789101112131415161718
  1. # language: en
  2. @machinelearning @client
  3. Feature: Amazon Machine Learning
  4. I want to use Amazon Machine Learning
  5. Scenario: Making a request
  6. When I call the "DescribeMLModels" API
  7. Then the value at "Results" should be a list
  8. Scenario: Error handling
  9. When I attempt to call the "GetBatchPrediction" API with:
  10. | BatchPredictionId | fake-id |
  11. Then the error code should be "ResourceNotFoundException"
  12. And the error message should contain:
  13. """
  14. No BatchPrediction with id fake-id exists
  15. """