def __init__()

in utils/wheel_feeder.py [0:0]


    def __init__(self, cognito_user_pool_id, cognito_client_id, region_name=None):
        """
        :param cognito_user_pool_id: Cognito User Pool Id which the Wheel uses to authenticate the Users
        :type cognito_user_pool_id: str
        :param cognito_client_id: Client Id configured in the Cognito User Pool
        :type cognito_client_id: str
        """
        self._username = None
        self._password = None
        self._cognito_user_pool_id = cognito_user_pool_id
        self._cognito_client_id = cognito_client_id
        self.region_name = region_name

        # stores object returned by warrant
        self._cognito_user_obj = None