moto/moto/ec2/responses/vm_export.py
2021-10-18 19:44:29 +00:00

17 lines
513 B
Python

from moto.core.responses import BaseResponse
class VMExport(BaseResponse):
def cancel_export_task(self):
raise NotImplementedError("VMExport.cancel_export_task is not yet implemented")
def create_instance_export_task(self):
raise NotImplementedError(
"VMExport.create_instance_export_task is not yet implemented"
)
def describe_export_tasks(self):
raise NotImplementedError(
"VMExport.describe_export_tasks is not yet implemented"
)