moto/moto/ec2/responses/monitoring.py
2023-02-16 20:43:43 -01:00

16 lines
428 B
Python

from moto.core.responses import BaseResponse
class Monitoring(BaseResponse):
def monitor_instances(self) -> str:
self.error_on_dryrun()
raise NotImplementedError("Monitoring.monitor_instances is not yet implemented")
def unmonitor_instances(self) -> str:
self.error_on_dryrun()
raise NotImplementedError(
"Monitoring.unmonitor_instances is not yet implemented"
)