moto/moto/batch_simple/responses.py
2022-05-06 09:45:56 +00:00

13 lines
325 B
Python

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