# File lib/aws/ec2/customer_gateway_collection.rb, line 59
      def _each_item options = {}, &block
        response = filtered_request(:describe_customer_gateways, options, &block)
        response.customer_gateway_set.each do |g|

          gateway = CustomerGateway.new_from(:describe_customer_gateways, g,
            g.customer_gateway_id, :config => config)

          yield(gateway)

        end
      end