The describe_reserved_instance function of mock_ec2 has not been implemented in moto lib. In this case, how can one write a unites for the following function in python?
def get_reserved_instance(ec2_client):
ri_response = ec2_client.describe_reserved_instances(
Filters=[
],
OfferingClass="convertible"
)
ri_response = ri_response["ReservedInstances"]
return ri_response