moto/moto/batch_simple/responses.py
2022-10-23 13:26:55 +00:00

13 lines
377 B
Python

from ..batch.responses import BatchResponse
from .models import batch_simple_backends, BatchBackend
class BatchSimpleResponse(BatchResponse):
@property
def batch_backend(self) -> BatchBackend:
"""
:return: Batch Backend
:rtype: moto.batch.models.BatchBackend
"""
return batch_simple_backends[self.current_account][self.region]