# File lib/fog/aws/ecs.rb, line 142
        def self.data
          @data ||= Hash.new do |hash, region|
            hash[region] = Hash.new do |region_hash, key|
              region_hash[key] = {
                :clusters => [],
                :task_definitions => [],
                :services => [],
                :container_instances => [],
                :tasks => []
              }
            end
          end
        end