| from abc import ABC, abstractmethod | |
| from typing import Dict, Optional | |
| class InfrastructureProvider(ABC): | |
| def create_lambda_functions(self, function_props: Optional[Dict] = None) -> Dict: | |
| pass | |
| def deploy(self) -> Dict[str, str]: | |
| pass | |
| def delete(self): | |
| pass | |
| def create_resources(self): | |
| pass | |