# File lib/fog/aws/requests/compute/reset_network_interface_attribute.rb, line 20
        def reset_network_interface_attribute(network_interface_id, attribute)
          if attribute != 'sourceDestCheck'
            raise Fog::Compute::AWS::Error.new("Illegal attribute '#{attribute}' specified")
          end
          request(
            'Action'             => 'ResetNetworkInterfaceAttribute',
            'NetworkInterfaceId' => network_interface_id,
            'Attribute'          => attribute,
            :parser              => Fog::Parsers::Compute::AWS::Basic.new
          )
        end