# File lib/fog/aws/requests/auto_scaling/delete_launch_configuration.rb, line 40
        def delete_launch_configuration(launch_configuration_name)
          unless self.data[:launch_configurations].delete(launch_configuration_name)
            raise Fog::AWS::AutoScaling::NotFound, "The launch configuration '#{launch_configuration_name}' does not exist."
          end

          response = Excon::Response.new
          response.status = 200
          response.body = {
            'ResponseMetadata' => { 'RequestId' => Fog::AWS::Mock.request_id }
          }
          response
        end