2014-08-27 11:17:06 -04:00
|
|
|
from __future__ import unicode_literals
|
2013-12-29 08:40:38 -05:00
|
|
|
from moto.core.responses import BaseResponse
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
|
2013-12-29 08:40:38 -05:00
|
|
|
class PlacementGroups(BaseResponse):
|
2013-02-21 23:13:01 -05:00
|
|
|
def create_placement_group(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('PlacementGroups.create_placement_group is not yet implemented')
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def delete_placement_group(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('PlacementGroups.delete_placement_group is not yet implemented')
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def describe_placement_groups(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('PlacementGroups.describe_placement_groups is not yet implemented')
|