We had the same problem, to remove it, I used AWS PowerShell tools.
Get-EBEnvironment | Where EnvironmentName -like "Your environment" |Select EnvironmentId
Stop-EBEnvironment -EnvironmentId xxxx
You can also use -EnvironmentName, although when checking with WhatIf it was empty, so I used EnvironmentId.