in src/aws_secretsmanager_caching/decorators.py [0:0]
    def __init__(self, secret_id, cache):
        """
        Constructs a decorator to inject a single non-keyworded argument from a cached secret for a given function.
        :type secret_id: str
        :param secret_id: The secret identifier
        :type cache: aws_secretsmanager_caching.SecretCache
        :param cache: Secret cache
        """
        self.cache = cache
        self.secret_id = secret_id