# File lib/aws/xml_grammar.rb, line 675
      def consume_in_wrapper method_name, child_frame
        wrapper_frame = wrapper_frame_for(method_name)
        add_mutators(method_name)

        # the wrapper consumes the unwrapped child
        customizations = child_frame.customizations.merge(:wrapper => nil)
        child_frame = child_frame.dup
        child_frame.customizations = customizations

        wrapper_frame.consume_child_frame(child_frame)
        consume_child_frame(wrapper_frame)
      end