14 lines
543 B
Python
14 lines
543 B
Python
from __future__ import unicode_literals
|
|
from moto.core.responses import BaseResponse
|
|
|
|
|
|
class PlacementGroups(BaseResponse):
|
|
def create_placement_group(self):
|
|
raise NotImplementedError('PlacementGroups.create_placement_group is not yet implemented')
|
|
|
|
def delete_placement_group(self):
|
|
raise NotImplementedError('PlacementGroups.delete_placement_group is not yet implemented')
|
|
|
|
def describe_placement_groups(self):
|
|
raise NotImplementedError('PlacementGroups.describe_placement_groups is not yet implemented')
|