1# language: en 2@autoscaling @client 3Feature: Auto Scaling 4 5 Scenario: Making a request 6 When I call the "DescribeScalingProcessTypes" API 7 Then the value at "Processes" should be a list 8 9 Scenario: Handing errors 10 When I attempt to call the "CreateLaunchConfiguration" API with: 11 | LaunchConfigurationName | | 12 | ImageId | ami-12345678 | 13 | InstanceType | m1.small | 14 Then I expect the response error code to be "ValidationError" 15 And I expect the response error message to include: 16 """ 17 LaunchConfigurationName 18 """ 19