source/lambda/requesthandlers/cloudwatch_event_handler.py [79:93]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def state_table(self):
        """
        Return the name of the state table
        :return: name of the state table
        """
        return os.getenv(configuration.ENV_STATE)

    @property
    def configuration(self):
        """
        Returns the scheduler configuration
        :return: scheduler configuration
        """
        if self._configuration is None:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



source/lambda/requesthandlers/scheduler_request_handler.py [64:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def state_table(self):
        """
        Returns the name of the configuration table
        :return: name of the configuration table
        """
        return os.getenv(configuration.ENV_STATE)

    @property
    def configuration(self):
        """
        Gets the configuration passed in the event
        :return: scheduler configuration
        """
        if self._configuration is None:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



