describeMovingAddresses  
  inline suspend fun Ec2Client.describeMovingAddresses(crossinline block: DescribeMovingAddressesRequest.Builder.() -> Unit): DescribeMovingAddressesResponse
This action is deprecated.
Describes your Elastic IP addresses that are being moved from or being restored to the EC2-Classic platform. This request does not return information about any other Elastic IP addresses in your account.
Samples
fun main() { 
   //sampleStart 
   // This example describes all of your moving Elastic IP addresses.
val resp = ec2Client.describeMovingAddresses() 
   //sampleEnd
}