in awsconfigstatuscheck-app/aws_config_status_check/ManagerFunction.py [0:0]
def __init__(self):
self.config = Config(
signature_version='v4',
retries={
'max_attempts': 10,
'mode': 'standard',
}
)
self.org = boto3.client('organizations', config=self.config, region_name='us-east-1')
self.cloudwatch_events = boto3.client('events', config=self.config, region_name='us-east-1')
self.ssm = boto3.client('ssm', config=self.config, region_name='us-east-1')
self.cloudwatch = boto3.client('cloudwatch', config=self.config, region_name='us-east-1')