16 lines
428 B
Python
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"
|
|
)
|