module Aws::S3

def self.access_grants_account_id_cache

Other tags:
    Api: - private
def self.access_grants_account_id_cache
  @access_grants_account_id_cache ||= LRUCache.new(
    max_entries: 100,
    expiration: 60 * 10
  )
end