# File lib/fog/aws/sns.rb, line 29
        def self.data
          @data ||= Hash.new do |hash, region|
            hash[region] = Hash.new do |region_hash, key|
              region_hash[key] = {
                :topics        => {},
                :subscriptions => {},
                :permissions   => {},
              }
            end
          end
        end