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

21 lines
703 B
Python

from moto.core.responses import BaseResponse
class PlacementGroups(BaseResponse):
def create_placement_group(self):
if self.is_not_dryrun("CreatePlacementGroup"):
raise NotImplementedError(
"PlacementGroups.create_placement_group is not yet implemented"
)
def delete_placement_group(self):
if self.is_not_dryrun("DeletePlacementGroup"):
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"
)