def __init__(self, context=None, logger=None):
"""
Initializes the instance
:param context: Lambda context
:param logger: Optional logger for warnings, if None then warnings are printed to console
"""
self._logger = logger
self._this_account = None
self._context = context
self._all_timezones = {tz.lower(): tz for tz in pytz.all_timezones}
self._all_actions = actions.all_actions()
self._s3_client = None
self._s3_configured_cross_account_roles = None
评论列表
文章目录